From: Michael Richardson Date: Mon, 23 Jan 2012 19:02:41 +0000 (-0800) Subject: Merge pull request #4 from infrastation/master X-Git-Tag: tcpdump-4.3.0~37^2 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/a4a13734bb167ab42f86da26c3aa1cb4da9954fd?hp=f062d715cd4c9118b33d5932060a213594a200d4 Merge pull request #4 from infrastation/master ND_OPT_ADVINTERVAL is in milliseconds, not seconds --- diff --git a/print-icmp6.c b/print-icmp6.c index ce1046ed..176c15c5 100644 --- a/print-icmp6.c +++ b/print-icmp6.c @@ -752,7 +752,7 @@ icmp6_opt_print(const u_char *bp, int resid) case ND_OPT_ADVINTERVAL: opa = (struct nd_opt_advinterval *)op; TCHECK(opa->nd_opt_adv_interval); - printf(" %us", EXTRACT_32BITS(&opa->nd_opt_adv_interval)); + printf(" %ums", EXTRACT_32BITS(&opa->nd_opt_adv_interval)); break; case ND_OPT_HOMEAGENT_INFO: oph = (struct nd_opt_homeagent_info *)op;