aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-spnego.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-08-04 18:52:01 +0000
committerBill Meier <wmeier@newsguy.com>2009-08-04 18:52:01 +0000
commitcb7dac7100ba7e3f9208dbee243b1a0160254f02 (patch)
tree1dd3e25c9a38b52871f9c20838ad7f483496790c /epan/dissectors/packet-spnego.c
parent90e865cc5486c645add2e9c7ca312b52192be243 (diff)
Initialize several ett_... variables to -1
svn path=/trunk/; revision=29295
Diffstat (limited to 'epan/dissectors/packet-spnego.c')
-rw-r--r--epan/dissectors/packet-spnego.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-spnego.c b/epan/dissectors/packet-spnego.c
index 82d8d8e58b..ece1e1b111 100644
--- a/epan/dissectors/packet-spnego.c
+++ b/epan/dissectors/packet-spnego.c
@@ -1,7 +1,7 @@
/* Do not modify this file. */
/* It is created automatically by the ASN.1 to Wireshark dissector compiler */
/* packet-spnego.c */
-/* ../../tools/asn2wrs.py -b -p spnego -c ./spnego.cnf -s ./packet-spnego-template -D . spnego.asn */
+/* ../../tools/asn2wrs.py -b -p spnego -c spnego.cnf -s packet-spnego-template spnego.asn */
/* Input file: packet-spnego-template.c */
@@ -124,8 +124,8 @@ gboolean saw_mechanism = FALSE;
/* Initialize the subtree pointers */
-static gint ett_spnego;
-static gint ett_spnego_wraptoken;
+static gint ett_spnego = -1;
+static gint ett_spnego_wraptoken = -1;
static gint ett_spnego_krb5 = -1;
static gint ett_spnego_krb5_cfx_flags = -1;