diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-31 03:17:56 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-31 03:17:56 +0000 |
commit | ab552d374661899453f7ceaf5e7e89f72727a8c1 (patch) | |
tree | eed196787c6507ea24eadb7cd17df52989e0489d /x11-fields | |
parent | f88816e60f1f14f2662c20740db6ecf3764e82b6 (diff) | |
download | wireshark-ab552d374661899453f7ceaf5e7e89f72727a8c1.tar.gz wireshark-ab552d374661899453f7ceaf5e7e89f72727a8c1.tar.bz2 wireshark-ab552d374661899453f7ceaf5e7e89f72727a8c1.zip |
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.
svn path=/trunk/; revision=7053
Diffstat (limited to 'x11-fields')
-rw-r--r-- | x11-fields | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-fields b/x11-fields index 193ca48126..55f5ffbd47 100644 --- a/x11-fields +++ b/x11-fields @@ -3,7 +3,7 @@ # # Copyright 2000, Christophe Tronche <ch.tronche@computer.org> # -# $Id: x11-fields,v 1.6 2002/04/17 08:33:09 guy Exp $ +# $Id: x11-fields,v 1.7 2003/01/31 03:17:47 guy Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -63,7 +63,7 @@ bell-duration INT16 DEC bell-percent INT8 DEC bell-pitch INT16 DEC bit-gravity UINT8 DEC VALS(gravity) -bit-plane UINT32 BIN +bit-plane UINT32 DEC blue UINT16 DEC blues UINT16 DEC border-pixel UINT32 HEX @@ -132,7 +132,7 @@ do-not-propagate-mask UINT32 HEX ButtonMotion BOOLEAN 32 0x00002000 erroneous-bits BOOLEAN 32 0xffffc0b0 -gc-dashes UINT8 BIN +gc-dashes UINT8 DEC gc-value-mask UINT32 HEX function BOOLEAN 32 0x00000001 |