diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-02 01:28:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-02 01:28:14 +0000 |
commit | e6272e1605cc6f26a9af9f6fcf4b64b702ce37d9 (patch) | |
tree | f5931cafc49c495d76fee05104380fc7445268c2 /packet-msproxy.c | |
parent | 0a05bfbeffaffbbadaaafd9447f3451626bd021a (diff) | |
download | wireshark-e6272e1605cc6f26a9af9f6fcf4b64b702ce37d9.tar.gz wireshark-e6272e1605cc6f26a9af9f6fcf4b64b702ce37d9.tar.bz2 wireshark-e6272e1605cc6f26a9af9f6fcf4b64b702ce37d9.zip |
Fix a call to "proto_tree_add_ipv4()" that was supposed to be a call to
"proto_tree_add_item()".
svn path=/trunk/; revision=5080
Diffstat (limited to 'packet-msproxy.c')
-rw-r--r-- | packet-msproxy.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packet-msproxy.c b/packet-msproxy.c index 7327163bc2..4a53ced42c 100644 --- a/packet-msproxy.c +++ b/packet-msproxy.c @@ -2,7 +2,7 @@ * Routines for Microsoft Proxy packet dissection * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com> * - * $Id: packet-msproxy.c,v 1.27 2002/01/24 09:20:49 guy Exp $ + * $Id: packet-msproxy.c,v 1.28 2002/04/02 01:28:14 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -22,12 +22,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * * This was derived from the dante socks implementation source code. * Most of the information came from common.h and msproxy_clientprotocol.c * * See http://www.inet.no/dante for more information - * */ /************************************************************************ @@ -639,7 +637,7 @@ static void dissect_udp_bind(tvbuff_t *tvb, int offset, offset += 2; if ( tree) - proto_tree_add_ipv4( tree, hf_msproxy_dstaddr, tvb, offset, 4, + proto_tree_add_item( tree, hf_msproxy_dstaddr, tvb, offset, 4, FALSE); offset += 96; |