]> Pileus Git - ~andy/fetchmail/commitdiff
Quench GCC complaint about unused system() return value.
authorMatthias Andree <matthias.andree@gmx.de>
Mon, 4 May 2009 22:07:36 +0000 (22:07 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Mon, 4 May 2009 22:07:36 +0000 (22:07 -0000)
svn path=/branches/BRANCH_6-3/; revision=5292

fetchmail.c

index aff4877b1d278221913052b39653c4b9755a226a..2832397a7558ed7ecbdf4f1285574b94b4d8b0c7 100644 (file)
@@ -292,7 +292,7 @@ int main(int argc, char **argv)
        fflush(stdout);
 
        /* this is an attempt to help remote debugging */
-       system("uname -a");
+       if (system("uname -a")) { /* NOOP to quench GCC complaint */ }
     }
 
     /* avoid parsing the config file if all we're doing is killing a daemon */