]> git.saurik.com Git - apt.git/blobdiff - methods/http_main.cc
use std::locale::global instead of setlocale
[apt.git] / methods / http_main.cc
index cd52c42e83407bd22dc217720c0ca66970cbe06a..fa183ddb3ce7119f5b57181886dfcaf28fb4ed48 100644 (file)
@@ -7,13 +7,9 @@
 
 int main()
 {
-   setlocale(LC_ALL, "");
-
    // ignore SIGPIPE, this can happen on write() if the socket
    // closes the connection (this is dealt with via ServerDie())
    signal(SIGPIPE, SIG_IGN);
 
-   HttpMethod Mth;
-
-   return Mth.Loop();
+   return HttpMethod().Loop();
 }