aboutsummaryrefslogtreecommitdiffstats
path: root/proto.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-10-12 19:47:44 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-10-12 19:47:44 +0000
commit7cffbb1badb28f4cf2e1c639ff43a9a14c6226be (patch)
tree7823ec8913e55893921fac46aeae4610529142d5 /proto.c
parentbacb9d5bae5e1aa9d9144463cd24d8c5adb9398e (diff)
Fix byte-count of IPv6 addresses.
svn path=/trunk/; revision=816
Diffstat (limited to 'proto.c')
-rw-r--r--proto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.c b/proto.c
index 7fb49e49dc..44078cf48e 100644
--- a/proto.c
+++ b/proto.c
@@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
- * $Id: proto.c,v 1.35 1999/10/12 06:20:23 gram Exp $
+ * $Id: proto.c,v 1.36 1999/10/12 19:47:44 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1048,7 +1048,7 @@ proto_registrar_get_length(int n)
return 6;
case FT_IPv6:
- return 128;
+ return 16;
}
g_assert_not_reached();
return -1;