]> git.gsnw.org Git - fping.git/commitdiff
fix compiler warning
authorDavid Schweikert <david@schweikert.ch>
Fri, 17 Feb 2017 08:21:26 +0000 (09:21 +0100)
committerDavid Schweikert <david@schweikert.ch>
Fri, 17 Feb 2017 08:21:26 +0000 (09:21 +0100)
src/fping.c

index e14fcc15104b94dec4cecb772a37a6f8ee564a65..4341b7d37bca1bcc8d616c9a0e3322441666fa58 100644 (file)
@@ -696,6 +696,7 @@ int main(int argc, char** argv)
         exit(1);
     }
 
+#ifdef FPING_SAFE_LIMITS
     if ((interval < MIN_INTERVAL * 100 || perhost_interval < MIN_PERHOST_INTERVAL * 100)
         && getuid()) {
         fprintf(stderr, "%s: these options are too risky for mere mortals.\n", prog);
@@ -703,6 +704,7 @@ int main(int argc, char** argv)
             prog, MIN_INTERVAL, MIN_PERHOST_INTERVAL);
         exit(1);
     }
+#endif
 
     if (ping_data_size > MAX_PING_DATA) {
         fprintf(stderr, "%s: data size %u not valid, must be lower than %u\n",