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/http_main.cc | |
parent | f1e3c8f002be54617656fc4ca525c3f1e57323f3 (diff) |
methods: Fail if we cannot drop privileges
Diffstat (limited to 'methods/http_main.cc')
-rw-r--r-- | methods/http_main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/http_main.cc b/methods/http_main.cc index 788582632..d7724701a 100644 --- a/methods/http_main.cc +++ b/methods/http_main.cc @@ -12,8 +12,8 @@ int main() // closes the connection (this is dealt with via ServerDie()) signal(SIGPIPE, SIG_IGN); - DropPrivs(); - HttpMethod Mth; + + Mth.DropPrivsOrDie(); return Mth.Loop(); } |