diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-02-25 10:30:21 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-02-25 10:30:21 +0000 |
commit | 4a338216da1cfa0ce089f39268e2b44f0805e47e (patch) | |
tree | f298329d1b972d7b86025fcc0a8e67815dc6e9ec /gtk/decode_as_dcerpc.c | |
parent | 955dd3ea8295d916b443ffa1d685827ad8dd46e7 (diff) | |
download | wireshark-4a338216da1cfa0ce089f39268e2b44f0805e47e.tar.gz wireshark-4a338216da1cfa0ce089f39268e2b44f0805e47e.tar.bz2 wireshark-4a338216da1cfa0ce089f39268e2b44f0805e47e.zip |
pinfo->private_data was a quite subptimal idea
change the decodeas for dcerpc so that it actually works again for dcerpc over smb
svn path=/trunk/; revision=13515
Diffstat (limited to 'gtk/decode_as_dcerpc.c')
-rw-r--r-- | gtk/decode_as_dcerpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/decode_as_dcerpc.c b/gtk/decode_as_dcerpc.c index a58c838938..f5e91efb66 100644 --- a/gtk/decode_as_dcerpc.c +++ b/gtk/decode_as_dcerpc.c @@ -377,7 +377,7 @@ decode_dcerpc_add_page (packet_info *pinfo) binding->port_a = pinfo->srcport; binding->port_b = pinfo->destport; binding->ctx_id = pinfo->dcectxid; - binding->smb_fid = dcerpc_get_transport_salt(pinfo, pinfo->dcetransporttype); + binding->smb_fid = dcerpc_get_transport_salt(pinfo); binding->ifname = NULL; /*binding->uuid = NULL;*/ binding->ver = 0; |