diff options
author | mcr <mcr> | 2005-04-06 21:32:38 +0000 |
---|---|---|
committer | mcr <mcr> | 2005-04-06 21:32:38 +0000 |
commit | 4189fb7df651e5742b15488d2f59dae5f526e82b (patch) | |
tree | 833c12cee17285e7709688606850e5a5c1108be2 /print-arcnet.c | |
parent | 82b1d075858faa41c5749108489c7c1ffaf8f185 (diff) | |
download | tcpdump-4189fb7df651e5742b15488d2f59dae5f526e82b.tar.gz |
refactored ip_print() so that chained header parser (ESP/AH) can
more easily call the inner parts.
Diffstat (limited to 'print-arcnet.c')
-rw-r--r-- | print-arcnet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-arcnet.c b/print-arcnet.c index 1515d2d6..48a43030 100644 --- a/print-arcnet.c +++ b/print-arcnet.c @@ -22,7 +22,7 @@ */ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-arcnet.c,v 1.19 2004-04-30 16:42:14 mcr Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-arcnet.c,v 1.20 2005-04-06 21:32:38 mcr Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -259,7 +259,7 @@ arcnet_encap_print(u_char arctype, const u_char *p, case ARCTYPE_IP_OLD: case ARCTYPE_IP: - ip_print(p, length); + ip_print(gndo, p, length); return (1); #ifdef INET6 |