]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Previous commit accidentally used 6 seconds cutoff.
authorBill Fenner <[email protected]>
Mon, 13 Feb 2012 16:32:14 +0000 (08:32 -0800)
committerBill Fenner <[email protected]>
Mon, 13 Feb 2012 16:32:14 +0000 (08:32 -0800)
60 seconds == 600 in units of 0.1, oops.

print-igmp.c

index a0c8d6fec4489af7270402ee0b4ad43267b56dc5..4087ee0980205cc6ea17e845c8cbe84bb9617e9a 100644 (file)
@@ -227,7 +227,7 @@ print_igmpv3_query(register const u_char *bp, register u_int len)
     }
     if (mrc != 100) {
        (void)printf(" [max resp time ");
-        if (mrt < 60) {
+        if (mrt < 600) {
             (void)printf("%.1fs", mrt * 0.1);
         } else {
             relts_print(mrt / 10);