diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2017-08-10 09:52:46 +0100 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2017-08-10 09:52:46 +0100 |
commit | 3951a87cbe09333a11faa929f93508c848a93fd5 (patch) | |
tree | bf3134a79dd1ddb448156aba1e5c9a2a410ae915 /print-bootp.c | |
parent | ff8464bffd24a451a5a4c08c6c6ab7d0a2c88785 (diff) | |
download | tcpdump-3951a87cbe09333a11faa929f93508c848a93fd5.tar.gz |
spell ASCII in uppercase
Diffstat (limited to 'print-bootp.c')
-rw-r--r-- | print-bootp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print-bootp.c b/print-bootp.c index fe798a04..ce2ecac4 100644 --- a/print-bootp.c +++ b/print-bootp.c @@ -406,7 +406,7 @@ trunc: * s - short (16 bits) * b - period-seperated decimal bytes (variable length) * x - colon-seperated hex bytes (variable length) - * a - ascii string (variable length) + * a - ASCII string (variable length) * B - on/off (8 bits) * $ - special (explicit code to handle) */ @@ -424,7 +424,7 @@ static const struct tok tag2str[] = { { TAG_LPR_SERVER, "iLPR-Server" }, /* lpr server (RFC1179) */ { TAG_IMPRESS_SERVER, "iIM" }, /* impress servers (Imagen) */ { TAG_RLP_SERVER, "iRL" }, /* resource location (RFC887) */ - { TAG_HOSTNAME, "aHostname" }, /* ascii hostname */ + { TAG_HOSTNAME, "aHostname" }, /* ASCII hostname */ { TAG_BOOTSIZE, "sBS" }, /* 512 byte blocks */ { TAG_END, " END" }, /* RFC1497 tags */ @@ -704,7 +704,7 @@ rfc1048_print(netdissect_options *ndo, switch (c) { case 'a': - /* ascii strings */ + /* ASCII strings */ ND_PRINT((ndo, "\"")); if (fn_printn(ndo, bp, len, ndo->ndo_snapend)) { ND_PRINT((ndo, "\"")); |