aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-mailslot.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-10-04 23:06:49 +0000
committerGuy Harris <guy@alum.mit.edu>2001-10-04 23:06:49 +0000
commit70cd4ff2eff295c299b3603eb38792085d7a69c9 (patch)
tree25f7bdd1bcd2776d746bbea49ced714de29e68f8 /packet-smb-mailslot.c
parent5881ffaf2a4ca8260ca31006f4a3c6844dd2f8a6 (diff)
If the body of a mailslot message isn't decoded as anything we know
about, dump it as data. svn path=/trunk/; revision=3996
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;
}