Added FT_UINT24 (FT_INT24 was already there) to glossary output so

description of fields in man page is correct.

svn path=/trunk/; revision=859
This commit is contained in:
Gilbert Ramirez 1999-10-16 15:46:01 +00:00
parent a4e1535f19
commit 3d64f272f3
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* proto.c
* Routines for protocol tree
*
* $Id: proto.c,v 1.43 1999/10/16 09:13:03 deniel Exp $
* $Id: proto.c,v 1.44 1999/10/16 15:46:01 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -1323,6 +1323,9 @@ proto_registrar_dump(void)
case FT_UINT16:
enum_name = "FT_UINT16";
break;
case FT_UINT24:
enum_name = "FT_UINT24";
break;
case FT_UINT32:
enum_name = "FT_UINT32";
break;