aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-mailslot.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-10-04 23:06:49 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-10-04 23:06:49 +0000
commit0ec74b2d0c08f091c43206583104b4c48375a693 (patch)
tree25f7bdd1bcd2776d746bbea49ced714de29e68f8 /packet-smb-mailslot.c
parent5f2bbf5f09a7b1708c201f61a1e19b489e3ccd99 (diff)
If the body of a mailslot message isn't decoded as anything we know
about, dump it as data. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3996 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-smb-mailslot.c')
-rw-r--r--packet-smb-mailslot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-smb-mailslot.c b/packet-smb-mailslot.c
index a6c8cf2a74..2c5aef5c7b 100644
--- a/packet-smb-mailslot.c
+++ b/packet-smb-mailslot.c
@@ -2,7 +2,7 @@
* Routines for SMB mailslot packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
- * $Id: packet-smb-mailslot.c,v 1.16 2001/08/07 08:39:56 guy Exp $
+ * $Id: packet-smb-mailslot.c,v 1.17 2001/10/04 23:06:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -138,6 +138,8 @@ dissect_mailslot_smb(tvbuff_t *setup_tvb, tvbuff_t *tvb, packet_info *pinfo,
/* by the logon request packet */
return dissect_smb_logon(next_tvb, pinfo, parent_tree);
}
+ /* Dump it as data */
+ dissect_data(next_tvb, 0, pinfo, parent_tree);
return TRUE;
}