Fixed a small problem that would have prevented Ethereal from compiling.
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 1 Jul 1999 04:04:38 +0000 (04:04 +0000)
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 1 Jul 1999 04:04:38 +0000 (04:04 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@335 f5534014-38df-0310-8fa8-9805f1628bb7

packet-smb.c
packet.h

index 15130a4c84feb6889f556dd4ea3701090b2ed6af..5edeaa6958a6a42b45e46ed68a844afbadcec15b 100644 (file)
@@ -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",
index b286eb89ee63d9ffb3abaa3c2658754cf4a612b1..d6f20b710c05a44d4f02130e383cc9c7e8390b19 100644 (file)
--- 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,