diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-12 22:51:58 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-10-12 22:51:58 +0000 |
commit | d92cf5c84bcfc7ca4b4fbc1f7f75c3a38e5e4e71 (patch) | |
tree | c4b9d5e6d0fcd0861c6f0961a8620f9011314a4e /proto.c | |
parent | 7cffbb1badb28f4cf2e1c639ff43a9a14c6226be (diff) | |
download | wireshark-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) { |