diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-08-24 05:38:23 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-08-24 05:38:23 +0000 |
commit | 38e52de283095fcb03461065ecee4bb135edbbb5 (patch) | |
tree | 02ffd4e6bc52c7a956d1e508e28885c555fdf7ba /packet-ipx.c | |
parent | ffa253abd059ae2770fd657787d5765c13216435 (diff) | |
download | wireshark-38e52de283095fcb03461065ecee4bb135edbbb5.tar.gz wireshark-38e52de283095fcb03461065ecee4bb135edbbb5.tar.bz2 wireshark-38e52de283095fcb03461065ecee4bb135edbbb5.zip |
Add endpoint talker support for IPX
svn path=/trunk/; revision=8240
Diffstat (limited to 'packet-ipx.c')
-rw-r--r-- | packet-ipx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipx.c b/packet-ipx.c index 7748203726..ccad627d8e 100644 --- a/packet-ipx.c +++ b/packet-ipx.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 2000-2002 by Gilbert Ramirez. * Portions Copyright (c) Novell, Inc. 2002-2003 * - * $Id: packet-ipx.c,v 1.135 2003/08/24 05:21:01 sahlberg Exp $ + * $Id: packet-ipx.c,v 1.136 2003/08/24 05:37:57 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -276,7 +276,7 @@ dissect_ipx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) SET_ADDRESS(&ipxh->ipx_src, AT_IPX, 10, src_net_node); SET_ADDRESS(&pinfo->net_dst, AT_IPX, 10, dst_net_node); SET_ADDRESS(&pinfo->dst, AT_IPX, 10, dst_net_node); - SET_ADDRESS(&ipxh->ipx_dst, AT_IPX, 10, src_net_node); + SET_ADDRESS(&ipxh->ipx_dst, AT_IPX, 10, dst_net_node); if (check_col(pinfo->cinfo, COL_INFO)) col_add_fstr(pinfo->cinfo, COL_INFO, "%s (0x%04x)", |