]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-dump-solver.cc
Merge branch 'debian/sid' into debian/experimental
[apt.git] / cmdline / apt-dump-solver.cc
index aa16b127149f74fe2114e720aa23d3520498c9ea..424764b3c35c5461e9ec3f8bf963f3a91480b0b6 100644 (file)
@@ -9,16 +9,18 @@
 // Include Files                                                       /*{{{*/
 #include <apt-pkg/edsp.h>
 
-#include <config.h>
-
+#include <string.h>
+#include <unistd.h>
 #include <cstdio>
 #include <iostream>
+
+#include <config.h>
                                                                        /*}}}*/
 
 // ShowHelp - Show a help screen                                       /*{{{*/
 // ---------------------------------------------------------------------
 /* */
-bool ShowHelp() {
+static bool ShowHelp() {
 
        std::cout <<
                PACKAGE " " PACKAGE_VERSION " for " COMMON_ARCH " compiled on " __DATE__ " " __TIME__ << std::endl <<
@@ -38,6 +40,8 @@ int main(int argc,const char *argv[])                                 /*{{{*/
                ShowHelp();
                return 0;
        }
+        // we really don't need anything
+        DropPrivs();
 
        FILE* input = fdopen(STDIN_FILENO, "r");
        FILE* output = fopen("/tmp/dump.edsp", "w");