aboutsummaryrefslogtreecommitdiffstats
path: root/packet-h225.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-09 00:56:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-09 00:56:04 +0000
commit8ced9fd5d95b8b75023ec4170c76385e9cc8b74c (patch)
tree4a94b50d1ed9012464fbb7f467e73af892a1fd12 /packet-h225.c
parentc1a2bedb429d0a9dce62dfe360de2513ea49774f (diff)
"conversation_new()" takes flags NO_ADDR2 and NO_PORT2, not NO_ADDR_B
and NO_PORT_B - the corresponding flags have the same values, but they don't have the same semantics (a "find_conversation()" call with a missing address or port B will do a wildcard match on *both* addresses or ports, not just the second one). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9604 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-h225.c')
-rw-r--r--packet-h225.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-h225.c b/packet-h225.c
index 59bd358f36..ae71a85037 100644
--- a/packet-h225.c
+++ b/packet-h225.c
@@ -4,7 +4,7 @@
*
* Maintained by Andreas Sikkema (andreas.sikkema@philips.com)
*
- * $Id: packet-h225.c,v 1.26 2003/12/15 04:23:54 guy Exp $
+ * $Id: packet-h225.c,v 1.27 2004/01/09 00:56:03 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2760,7 +2760,7 @@ dissect_h225_h245Address(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
conv=find_conversation(&src_addr, &src_addr, PT_TCP, ipv4_port, ipv4_port, NO_ADDR_B|NO_PORT_B);
if(!conv){
- conv=conversation_new(&src_addr, &src_addr, PT_TCP, ipv4_port, ipv4_port, NO_ADDR_B|NO_PORT_B);
+ conv=conversation_new(&src_addr, &src_addr, PT_TCP, ipv4_port, ipv4_port, NO_ADDR2|NO_PORT2);
conversation_set_dissector(conv, h245_handle);
}
}