From 576da09dbcfe71ebdae46489f3aa43e6115354f3 Mon Sep 17 00:00:00 2001 From: Bill Fenner Date: Mon, 13 Feb 2012 08:32:14 -0800 Subject: Previous commit accidentally used 6 seconds cutoff. 60 seconds == 600 in units of 0.1, oops. --- print-igmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'print-igmp.c') diff --git a/print-igmp.c b/print-igmp.c index a0c8d6fe..4087ee09 100644 --- a/print-igmp.c +++ b/print-igmp.c @@ -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); -- cgit v1.2.1