aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2002-08-31 00:12:14 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2002-08-31 00:12:14 +0000
commit284d6547e2790c0e517da9a655e0e1d4e220d8c3 (patch)
treeb57e64a21995f31e71250d91bcc48dd5815eed25 /smb.h
parentf44c41f4ed3c0c94b313d66aaa3cdf8568392ef7 (diff)
Handle the lack of a security blob in negprot response when raw NTLMSSP is
being used properly. svn path=/trunk/; revision=6149
Diffstat (limited to 'smb.h')
-rw-r--r--smb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smb.h b/smb.h
index 343d29d142..a0b8060c77 100644
--- a/smb.h
+++ b/smb.h
@@ -2,7 +2,7 @@
* Defines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: smb.h,v 1.45 2002/08/30 23:49:22 sharpe Exp $
+ * $Id: smb.h,v 1.46 2002/08/31 00:12:14 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -233,6 +233,7 @@ typedef struct {
nstime_t req_time;
guint16 flags;
int cmd;
+ gboolean raw_ntlmssp; /* Do extended security exc use raw ntlmssp */
void *extra_info;
} smb_saved_info_t;
@@ -283,7 +284,6 @@ typedef struct smb_info {
gboolean unicode; /* Are strings in this SMB Unicode? */
gboolean request; /* Is this a request? */
gboolean unidir;
- gboolean raw_ntlmssp; /* Do extended security exc use raw ntlmssp */
int info_level;
int info_count;
smb_saved_info_t *sip; /* smb_saved_info_t, if any, for this */