aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skinny.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2006-11-26 13:36:03 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2006-11-26 13:36:03 +0000
commit382517930c0cc1ecb971678fbb7d8904867c0a63 (patch)
treea7a7cbeddf8318d4cbed464043627007b9cd9170 /epan/dissectors/packet-skinny.c
parentef1750b7d20417262261f4ccd46aea275f2ce2ff (diff)
If we found that the packet does not belong to Skinny (new style dissector), there's no need to call call_dissector(data_handle, ...) before returning FALSE.
svn path=/trunk/; revision=19988
Diffstat (limited to 'epan/dissectors/packet-skinny.c')
-rw-r--r--epan/dissectors/packet-skinny.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-skinny.c b/epan/dissectors/packet-skinny.c
index 21a9b3ec52..14c97f42a7 100644
--- a/epan/dissectors/packet-skinny.c
+++ b/epan/dissectors/packet-skinny.c
@@ -2567,7 +2567,6 @@ dissect_skinny(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (hdr_data_length < 4 || hdr_reserved != 0) {
/* Not an SKINNY packet, just happened to use the same port */
- call_dissector(data_handle,tvb, pinfo, tree);
return FALSE;
}