]> git.gsnw.org Git - fping.git/commitdiff
fix --help test, prepare 4.1 release
authorDavid Schweikert <david@schweikert.ch>
Sun, 29 Jul 2018 06:44:47 +0000 (08:44 +0200)
committerDavid Schweikert <david@schweikert.ch>
Sun, 29 Jul 2018 06:44:47 +0000 (08:44 +0200)
configure.ac
src/fping.c

index fa7ef05d4e79b11e98fdcd14b6ed49c055c5d87b..8a0585ac7b963a2021913556ac9ec8f7da3cea2e 100644 (file)
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
 dnl Minimum Autoconf version required.
 AC_PREREQ(2.59)
 
-AC_INIT([fping],[4.0])
+AC_INIT([fping],[4.1])
 
 dnl --disable-ipv4
 AC_ARG_ENABLE([ipv4],
index 8b9ce2510f8b2eec5d0b2602e308b8fd58f06961..35edca43fe333e70f76279491a35c6f202c466e6 100644 (file)
@@ -354,6 +354,7 @@ int main(int argc, char** argv)
 
     /* pre-parse -h/--help, so that we also can output help information
      * without trying to open the socket, which might fail */
+    prog = argv[0];
     if(argc == 2 && ( strcmp(argv[1],"-h")==0 || strcmp(argv[1],"--help")==0 )) {
         usage(0);
     }
@@ -369,7 +370,6 @@ int main(int argc, char** argv)
             perror("cannot setuid");
     }
 
-    prog = argv[0];
     optparse_init(&optparse_state, argv);
     ident = getpid() & 0xFFFF;
     verbose_flag = 1;