aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-31 03:17:56 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-31 03:17:56 +0000
commitc69fbd88a7b59f840583728f30060b637b69dff8 (patch)
treeeed196787c6507ea24eadb7cd17df52989e0489d /epan/proto.h
parentf01ce99614a950a3e71a6a5735823890e614f9bc (diff)
Get rid of BASE_BIN - it's just the same as BASE_DEC, but people seemed
to be using it for stuff that should be hex, and for stuff that should be Boolean. Use BASE_DEC if it should be decimal, BASE_HEX if it should be hex, and make it Boolean if it should be Boolean. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7053 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 97c849f4ff..47cd2dd205 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -1,7 +1,7 @@
/* proto.h
* Definitions for protocol display
*
- * $Id: proto.h,v 1.37 2002/11/28 01:46:12 guy Exp $
+ * $Id: proto.h,v 1.38 2003/01/31 03:17:52 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -61,8 +61,7 @@ enum {
BASE_NONE,
BASE_DEC,
BASE_HEX,
- BASE_OCT,
- BASE_BIN
+ BASE_OCT
};
typedef struct _header_field_info header_field_info;