diff options
author | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-11-26 05:13:14 +0000 |
---|---|---|
committer | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-11-26 05:13:14 +0000 |
commit | 4877553530fc356888edb95332b24eaeaadeee80 (patch) | |
tree | dece920ad31185cc514f42c162bd238ed5edcd14 /packet-quake2.c | |
parent | fcd5b352af60e034a4b63601272b43b6644029cd (diff) | |
download | wireshark-4877553530fc356888edb95332b24eaeaadeee80.tar.gz wireshark-4877553530fc356888edb95332b24eaeaadeee80.tar.bz2 wireshark-4877553530fc356888edb95332b24eaeaadeee80.zip |
Switched from using CHECK_DISPLAY_AS_DATA to using CHECK_DISPLAY_AS_X
which also takes a handle as an argument and thus doesn't call
dissect_data directly.
svn path=/trunk/; revision=4270
Diffstat (limited to 'packet-quake2.c')
-rw-r--r-- | packet-quake2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-quake2.c b/packet-quake2.c index 78e39ecc94..fb8bbf3259 100644 --- a/packet-quake2.c +++ b/packet-quake2.c @@ -7,7 +7,7 @@ * http://www.dgs.monash.edu.au/~timf/bottim/ * http://www.opt-sci.Arizona.EDU/Pandora/default.asp * - * $Id: packet-quake2.c,v 1.3 2001/11/25 22:19:24 hagbard Exp $ + * $Id: packet-quake2.c,v 1.4 2001/11/26 05:13:11 hagbard Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -275,7 +275,7 @@ dissect_quake2(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) * call a conversation dissector doesn't check for disabled * protocols or set "pinfo->current_proto". */ - CHECK_DISPLAY_AS_DATA(proto_quake2, tvb, pinfo, tree); + CHECK_DISPLAY_AS_X(data_handle,proto_quake2, tvb, pinfo, tree); direction = (pinfo->destport == gbl_quake2ServerPort) ? DIR_C2S : DIR_S2C; |