X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/39b4b76cbfc378d240eb30caaa102b0ca51fad3f..804de19f5f89a94d445edc3b1b1cf95b55f71258:/methods/http_main.cc diff --git a/methods/http_main.cc b/methods/http_main.cc index 7815c2fc1..f21a5709c 100644 --- a/methods/http_main.cc +++ b/methods/http_main.cc @@ -1,12 +1,10 @@ +#include #include -#include +#include #include -#include "connect.h" -#include "rfc2553emu.h" #include "http.h" - int main() { setlocale(LC_ALL, ""); @@ -16,5 +14,7 @@ int main() signal(SIGPIPE, SIG_IGN); HttpMethod Mth; + + Mth.DropPrivsOrDie(); return Mth.Loop(); }