diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-04-30 12:52:10 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-04-30 13:35:06 +0200 |
commit | 3e3e6d2ef4c1b120077378fe32dc0a88ee81f38e (patch) | |
tree | 62adc130a22be5f590b0c0174a02775b828b7be1 /print-ipx.c | |
parent | f7530ee4d5f7d05ee0185c1d166103a3f698a797 (diff) | |
download | tcpdump-3e3e6d2ef4c1b120077378fe32dc0a88ee81f38e.tar.gz |
Rename the fn_printX() functions to nd_printX()
The functions are: nd_print, nd_printztn, nd_printn and nd_printzp.
Trying to make it clearer that they currently have to be used only on part
of the packet buffer.
Update some comments.
Diffstat (limited to 'print-ipx.c')
-rw-r--r-- | print-ipx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-ipx.c b/print-ipx.c index b17cdf61..ed915d06 100644 --- a/print-ipx.c +++ b/print-ipx.c @@ -189,7 +189,7 @@ ipx_sap_print(netdissect_options *ndo, const u_char *ipx, u_int length) ND_PRINT("'"); goto trunc; } - if (fn_printzp(ndo, ipx, 48, ndo->ndo_snapend)) { + if (nd_printzp(ndo, ipx, 48, ndo->ndo_snapend)) { ND_PRINT("'"); goto trunc; } |