X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/ee68aa36460d7efeca48747f33b7f2adc0900bfb..c5a34f01b4d03a0c24f9abb57f0db45c502aceb5:/print-bootp.c diff --git a/print-bootp.c b/print-bootp.c index 89bd59be..2bc8bb6b 100644 --- a/print-bootp.c +++ b/print-bootp.c @@ -512,7 +512,7 @@ static const struct tok tag2str[] = { { TAG_CLASSLESS_STA_RT_MS, "$Classless-Static-Route-Microsoft" }, /* RFC 5859 - TFTP Server Address Option for DHCPv4 */ { TAG_TFTP_SERVER_ADDRESS, "iTFTP-Server-Address" }, -/* http://www.iana.org/assignments/bootp-dhcp-extensions/index.htm */ +/* https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.xhtml#options */ { TAG_SLP_NAMING_AUTH, "aSLP-NA" }, { TAG_CLIENT_FQDN, "$FQDN" }, { TAG_AGENT_CIRCUIT, "$Agent-Information" }, @@ -1055,7 +1055,7 @@ trunc: nd_print_trunc(ndo); } -#define PRINTCMUADDR(m, s) { ND_TCHECK_4(&cmu->m); \ +#define PRINTCMUADDR(m, s) { ND_TCHECK_4(cmu->m); \ if (GET_IPV4_TO_NETWORK_ORDER(cmu->m) != 0) \ ND_PRINT(" %s:%s", s, ipaddr_string(ndo, cmu->m)); }