aboutsummaryrefslogtreecommitdiffstats
path: root/packet-quake.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-10-21 05:52:28 +0000
committerGuy Harris <guy@alum.mit.edu>2000-10-21 05:52:28 +0000
commit563f86ee5eab280006171dbd7fdb411715594355 (patch)
tree616003167e713e2f88482dfdd46c1869d68eb308 /packet-quake.c
parent183e9cbf25933dcd9abc8db485f5308459f192b2 (diff)
Support for conversations with "wildcard" destination addresses, from
Jeff Foster. svn path=/trunk/; revision=2523
Diffstat (limited to 'packet-quake.c')
-rw-r--r--packet-quake.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-quake.c b/packet-quake.c
index 4bacc020a1..39f5de363a 100644
--- a/packet-quake.c
+++ b/packet-quake.c
@@ -4,7 +4,7 @@
* Uwe Girlich <uwe@planetquake.com>
* http://www.idsoftware.com/q1source/q1source.zip
*
- * $Id: packet-quake.c,v 1.6 2000/08/30 02:50:01 gram Exp $
+ * $Id: packet-quake.c,v 1.7 2000/10/21 05:52:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -238,7 +238,8 @@ dissect_quake_CCREP_ACCEPT
conversation_t *c;
port = tvb_get_letohl(tvb, 0);
- c = conversation_new( &pi.src, &pi.dst, PT_UDP, port, pi.destport, NULL);
+ c = conversation_new( &pi.src, &pi.dst, PT_UDP, port, pi.destport,
+ NULL, 0);
if (c) {
conversation_set_dissector(c, dissect_quake);
}