aboutsummaryrefslogtreecommitdiffstats
path: root/proto.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-10-12 22:51:58 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-10-12 22:51:58 +0000
commitd92cf5c84bcfc7ca4b4fbc1f7f75c3a38e5e4e71 (patch)
treec4b9d5e6d0fcd0861c6f0961a8620f9011314a4e /proto.c
parent7cffbb1badb28f4cf2e1c639ff43a9a14c6226be (diff)
downloadwireshark-d92cf5c84bcfc7ca4b4fbc1f7f75c3a38e5e4e71.tar.gz
wireshark-d92cf5c84bcfc7ca4b4fbc1f7f75c3a38e5e4e71.tar.bz2
wireshark-d92cf5c84bcfc7ca4b4fbc1f7f75c3a38e5e4e71.zip
Add FT_UINT24 and FT_INT24 to a spot where they were missing.
svn path=/trunk/; revision=817
Diffstat (limited to 'proto.c')
-rw-r--r--proto.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto.c b/proto.c
index 44078cf48e..17e58cbbde 100644
--- a/proto.c
+++ b/proto.c
@@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
- * $Id: proto.c,v 1.36 1999/10/12 19:47:44 gram Exp $
+ * $Id: proto.c,v 1.37 1999/10/12 22:51:58 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -616,9 +616,11 @@ proto_item_fill_label(field_info *fi, gchar *label_str)
*/
case FT_UINT8:
case FT_UINT16:
+ case FT_UINT24:
case FT_UINT32:
case FT_INT8:
case FT_INT16:
+ case FT_INT24:
case FT_INT32:
if (hfinfo->bitmask) {
if (hfinfo->strings) {