aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rlogin.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-10-21 05:52:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-10-21 05:52:28 +0000
commit4fd23a5c542a39e3e55781c0fa42ae9258f40533 (patch)
tree616003167e713e2f88482dfdd46c1869d68eb308 /packet-rlogin.c
parente404f03da9dd268ee7f9b961255059807ebfccd5 (diff)
Support for conversations with "wildcard" destination addresses, from
Jeff Foster. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2523 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rlogin.c')
-rw-r--r--packet-rlogin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-rlogin.c b/packet-rlogin.c
index 99878045d2..26cc030a80 100644
--- a/packet-rlogin.c
+++ b/packet-rlogin.c
@@ -2,7 +2,7 @@
* Routines for unix rlogin packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-rlogin.c,v 1.9 2000/08/13 14:08:37 deniel Exp $
+ * $Id: packet-rlogin.c,v 1.10 2000/10/21 05:52:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -369,7 +369,7 @@ dissect_rlogin(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
/* Lookup this connection*/
conversation = find_conversation( &pi.src, &pi.dst, pi.ptype,
- pi.srcport, pi.destport);
+ pi.srcport, pi.destport, 0);
if ( conversation) /* conversation found */
hash_info = conversation->data;
@@ -382,7 +382,7 @@ dissect_rlogin(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
hash_info->name[ 0] = 0;
conversation_new( &pi.src, &pi.dst, pi.ptype,
- pi.srcport, pi.destport, hash_info);
+ pi.srcport, pi.destport, hash_info, 0);
}
if (check_col(fd, COL_PROTOCOL)) /* update protocol */