diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-24 06:03:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-24 06:03:34 +0000 |
commit | 8a5d5f9bde91019a785a23bab01677cb6eba8739 (patch) | |
tree | f9e9ceb8feb9b474fd6f6627ea0f976493553503 /packet-ipx.c | |
parent | c2b87a5d1e88ad6819175735ee537b5081d23da6 (diff) | |
download | wireshark-8a5d5f9bde91019a785a23bab01677cb6eba8739.tar.gz wireshark-8a5d5f9bde91019a785a23bab01677cb6eba8739.tar.bz2 wireshark-8a5d5f9bde91019a785a23bab01677cb6eba8739.zip |
From Joerg Mayer: get rid of extra arguments to capture routines.
svn path=/trunk/; revision=5233
Diffstat (limited to 'packet-ipx.c')
-rw-r--r-- | packet-ipx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipx.c b/packet-ipx.c index f0949bd861..5e75058541 100644 --- a/packet-ipx.c +++ b/packet-ipx.c @@ -2,7 +2,7 @@ * Routines for NetWare's IPX * Gilbert Ramirez <gram@alumni.rice.edu> * - * $Id: packet-ipx.c,v 1.102 2002/02/17 00:51:19 guy Exp $ + * $Id: packet-ipx.c,v 1.103 2002/04/24 06:03:34 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -192,7 +192,7 @@ static const value_string ipxmsg_sigchar_vals[] = { }; void -capture_ipx(const u_char *pd, int offset, int len, packet_counts *ld) +capture_ipx(packet_counts *ld) { ld->ipx++; } |