]> git.gsnw.org Git - fping.git/commitdiff
Get rid of warning "timeout (-t) value larger than period (-p) produces unexpected...
authorDavid Schweikert <david@schweikert.ch>
Tue, 19 Feb 2019 20:39:14 +0000 (21:39 +0100)
committerDavid Schweikert <david@schweikert.ch>
Tue, 19 Feb 2019 20:39:14 +0000 (21:39 +0100)
CHANGELOG.md
ci/test-09-option-r-t.pl
src/fping.c

index 5bd8fc5826e45d371069458ae98301cff3f50215..e5c51a94a8d1df31db18703ba7785809d4d33269 100644 (file)
@@ -15,6 +15,9 @@ fping 4.2 (UNRELEASED)
   embedded-distro use cases, and not meant to be used generally in place of
   compiling IPv6-only binary or using '-6', see also the notes in #139, thanks
   abelbeck)
+- Get rid of warning "timeout (-t) value larger than period (-p) produces unexpected results"
+  (#142, thanks @MrDragon1122)
+  
 
 fping 4.1 (2018-09-17)
 ======================
index 997d01960c4dfbc940c9b5f4273de2baca53bec0..e182ca3080d62025bc47a47d8bd2e8250c78e30d 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-use Test::Command tests => 23;
+use Test::Command tests => 21;
 use Test::More;
 
 #  -R         random bytes
@@ -104,9 +104,3 @@ $cmd->stderr_is_eq("fping: can't parse source address: bla\n");
 }
 
 # (note: fping -t also tested in test-4-options-a-b.pl)
-
-{
-my $cmd = Test::Command->new(cmd => "fping -c 2 -p 100 -t 200 127.0.0.1");
-$cmd->exit_is_num(0);
-$cmd->stderr_like(qr{^fping: warning: timeout \(-t\) value larger than period \(-p\) produces unexpected results\n.*});
-}
index d7205f31e53b2de95ea17cffcfecada3c1763e64..4a0c60a1f554ced96cbda5e18a09807abcccb3c9 100644 (file)
@@ -785,11 +785,6 @@ int main(int argc, char** argv)
                 timeout = AUTOTUNE_TIMEOUT_MAX * 100;
             }
         }
-        else {
-            if (timeout > perhost_interval && (loop_flag || (count_flag && count > 1))) {
-                fprintf(stderr, "%s: warning: timeout (-t) value larger than period (-p) produces unexpected results\n", prog);
-            }
-        }
     }
 
 #if defined(DEBUG) || defined(_DEBUG)