diff options
author | Julian Andres Klode <jak@debian.org> | 2014-09-24 21:49:19 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2014-09-24 21:49:19 +0200 |
commit | 7b18d5592fd5e0bb173e193d1e6693a66065f971 (patch) | |
tree | c7485a668a96e6b644adae4b5f46a78827878d98 /methods/https.cc | |
parent | f1e3c8f002be54617656fc4ca525c3f1e57323f3 (diff) |
methods: Fail if we cannot drop privileges
Diffstat (limited to 'methods/https.cc')
-rw-r--r-- | methods/https.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/https.cc b/methods/https.cc index a40f37710..a74d2a38b 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -443,11 +443,11 @@ int main() { setlocale(LC_ALL, ""); - DropPrivs(); - HttpsMethod Mth; curl_global_init(CURL_GLOBAL_SSL) ; + Mth.DropPrivsOrDie(); + return Mth.Run(); } |