X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/a86405d6ceea66d00755ad5fc63d1510a88ff536..ad87e9495c5c5ecdbb38b7ad76e9c54d7e9852ac:/print-enc.c diff --git a/print-enc.c b/print-enc.c index 061d6913..605ca33d 100644 --- a/print-enc.c +++ b/print-enc.c @@ -22,8 +22,8 @@ */ #ifndef lint -static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-enc.c,v 1.1 2003-03-08 08:55:34 guy Exp $ (LBL)"; +static const char rcsid[] _U_ = + "@(#) $Header: /tcpdump/master/tcpdump/print-enc.c,v 1.4 2005-04-06 21:32:39 mcr Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -71,8 +71,16 @@ enc_if_print(const struct pcap_pkthdr *h, register const u_char *p) length -= ENC_HDRLEN; /* XXX - use the address family */ - ip_print(p + ENC_HDRLEN, length); + ip_print(gndo, p + ENC_HDRLEN, length); out: return (ENC_HDRLEN); } + + +/* + * Local Variables: + * c-style: whitesmith + * c-basic-offset: 8 + * End: + */