diff options
author | Gerald Combs <gerald@wireshark.org> | 2000-05-10 21:36:55 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2000-05-10 21:36:55 +0000 |
commit | 69daa47b26e628d7f31de333070fb7f286e17b0c (patch) | |
tree | 508c48f218239a2028a82925992361ec6e776f4b /packet-ip.c | |
parent | c71e3de675116548b7bc5d945f79315257e0e76f (diff) | |
download | wireshark-69daa47b26e628d7f31de333070fb7f286e17b0c.tar.gz wireshark-69daa47b26e628d7f31de333070fb7f286e17b0c.tar.bz2 wireshark-69daa47b26e628d7f31de333070fb7f286e17b0c.zip |
Fix a typo in the packet counter.
svn path=/trunk/; revision=1934
Diffstat (limited to 'packet-ip.c')
-rw-r--r-- | packet-ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ip.c b/packet-ip.c index b0c66f3b49..d84eab9a39 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.83 2000/04/20 07:05:54 guy Exp $ + * $Id: packet-ip.c,v 1.84 2000/05/10 21:36:55 gerald Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -378,7 +378,7 @@ capture_ip(const u_char *pd, int offset, packet_counts *ld) { ld->gre++; break; case IP_PROTO_VINES: - ld->gre++; + ld->vines++; break; default: ld->other++; |