diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-21 05:52:28 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-21 05:52:28 +0000 |
commit | 563f86ee5eab280006171dbd7fdb411715594355 (patch) | |
tree | 616003167e713e2f88482dfdd46c1869d68eb308 /packet-afs.c | |
parent | 183e9cbf25933dcd9abc8db485f5308459f192b2 (diff) | |
download | wireshark-563f86ee5eab280006171dbd7fdb411715594355.tar.gz wireshark-563f86ee5eab280006171dbd7fdb411715594355.tar.bz2 wireshark-563f86ee5eab280006171dbd7fdb411715594355.zip |
Support for conversations with "wildcard" destination addresses, from
Jeff Foster.
svn path=/trunk/; revision=2523
Diffstat (limited to 'packet-afs.c')
-rw-r--r-- | packet-afs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-afs.c b/packet-afs.c index 0c616e0e8c..f4a4b978a3 100644 --- a/packet-afs.c +++ b/packet-afs.c @@ -6,7 +6,7 @@ * Portions based on information retrieved from the RX definitions * in Arla, the free AFS client at http://www.stacken.kth.se/project/arla/ * - * $Id: packet-afs.c,v 1.13 2000/08/13 14:07:56 deniel Exp $ + * $Id: packet-afs.c,v 1.14 2000/10/21 05:52:21 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -758,11 +758,11 @@ dissect_afs(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) * packets from B:Y to A:X. */ conversation = find_conversation(&pi.src, &pi.dst, pi.ptype, - pi.srcport, pi.destport); + pi.srcport, pi.destport, 0); if (conversation == NULL) { /* It's not part of any conversation - create a new one. */ conversation = conversation_new(&pi.src, &pi.dst, pi.ptype, - pi.srcport, pi.destport, NULL); + pi.srcport, pi.destport, NULL, 0); } request_key.conversation = conversation->index; |