summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-msproxy.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-03-02 09:33:49 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-03-02 09:33:49 +0000
commit2808928c906e029921353c74c4e90a160c6c0d37 (patch)
tree108f5b8d6aa7adf4f6608d44ea36fd195915f439 /epan/dissectors/packet-msproxy.c
parent31c4bb49d8e77de7255d49c69bbcf72e6cbf4753 (diff)
downloadwireshark-2808928c906e029921353c74c4e90a160c6c0d37.tar.gz
make the tcp_acked struct a pointer from the tcpd struct since we might need it hanging around.
only call subdissectors for packets that are NOT keepalives nor zerowindowprobes. keepalives only contain garbage anyway and zerowindowproes just contain a single byte of incomplete data so whats the point trying to dissect it further. svn path=/trunk/; revision=17443
Diffstat (limited to 'epan/dissectors/packet-msproxy.c')
-rw-r--r--epan/dissectors/packet-msproxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-msproxy.c b/epan/dissectors/packet-msproxy.c
index 6522592ae9..bba64ba988 100644
--- a/epan/dissectors/packet-msproxy.c
+++ b/epan/dissectors/packet-msproxy.c
@@ -235,7 +235,7 @@ static void msproxy_sub_dissector( tvbuff_t *tvb, packet_info *pinfo,
if ( redirect_info->proto == PT_TCP)
decode_tcp_ports( tvb, 0, pinfo, tree, pinfo->srcport,
- pinfo->destport);
+ pinfo->destport, NULL);
else
decode_udp_ports( tvb, 0, pinfo, tree, pinfo->srcport,
pinfo->destport, -1);