diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-02 18:36:05 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-02 18:36:05 +0400 |
commit | 525875a63ee715aed734cbdf6048424ff3ce4b02 (patch) | |
tree | b9c5525e7b432437b60bbde8b6744ed0155a1e89 /print-llc.c | |
parent | fc6f112b40b9da56286ebc125f109e2889f5ebdb (diff) | |
download | tcpdump-525875a63ee715aed734cbdf6048424ff3ce4b02.tar.gz |
fixup a few ND_DEFAULTPRINT() use cases
Diffstat (limited to 'print-llc.c')
-rw-r--r-- | print-llc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-llc.c b/print-llc.c index c2363d5f..5619730a 100644 --- a/print-llc.c +++ b/print-llc.c @@ -153,7 +153,7 @@ llc_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, if (caplen < 3) { ND_PRINT((ndo, "[|llc]")); - default_print((u_char *)p, caplen); + ND_DEFAULTPRINT((u_char *)p, caplen); return(0); } @@ -179,7 +179,7 @@ llc_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, */ if (caplen < 4) { ND_PRINT((ndo, "[|llc]")); - default_print((u_char *)p, caplen); + ND_DEFAULTPRINT((u_char *)p, caplen); return(0); } |