aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packet-smb.c4
-rw-r--r--packet.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 15130a4c84..5edeaa6958 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -2,7 +2,7 @@
* Routines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: packet-smb.c,v 1.13 1999/06/28 10:57:57 sharpe Exp $
+ * $Id: packet-smb.c,v 1.14 1999/07/01 04:04:36 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@@ -1750,7 +1750,7 @@ dissect_negprot_smb(const u_char *pd, int offset, frame_data *fd, proto_tree *tr
ti = proto_tree_add_item(tree, offset, 4, "Capabilities: 0x%04x", caps);
caps_tree = proto_tree_new();
- proto_item_add_subtree(ti, caps_tree, ETT_SMB_CAPS);
+ proto_item_add_subtree(ti, caps_tree, ETT_SMB_CAPABILITIES);
proto_tree_add_item(caps_tree, offset, 4, "%s",
decode_boolean_bitfield(caps, 0x0001, 32,
"Raw Mode supported",
diff --git a/packet.h b/packet.h
index b286eb89ee..d6f20b710c 100644
--- a/packet.h
+++ b/packet.h
@@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.62 1999/06/22 03:39:07 guy Exp $
+ * $Id: packet.h,v 1.63 1999/07/01 04:04:38 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -241,7 +241,7 @@ enum {
ETT_SMB_FLAGS2,
ETT_SMB_DIALECTS,
ETT_SMB_MODE,
- ETT_SMB_CAPS,
+ ETT_SMB_CAPABILITIES,
ETT_SMB_RAWMODE,
ETT_SMB_AFLAGS,
ETT_PPTP,