diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-14 15:03:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:16 -0500 |
commit | e3f2414cf9e582a4e4deecc662b64a7bb2679a34 (patch) | |
tree | d7f9afc1db09bce58ff895418c97c36e6bb33908 /source4/auth/ntlmssp | |
parent | eefe30b7d8e17ed744318417954669bacf2b3ac0 (diff) | |
download | samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.tar.gz samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.tar.bz2 samba-e3f2414cf9e582a4e4deecc662b64a7bb2679a34.zip |
r14380: Reduce the size of structs.h
(This used to be commit 1a16a6f1dfa66499af43a6b88b3ea69a6a75f1fe)
Diffstat (limited to 'source4/auth/ntlmssp')
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp.h | 1 | ||||
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp_client.c | 2 | ||||
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp_server.c | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/source4/auth/ntlmssp/ntlmssp.h b/source4/auth/ntlmssp/ntlmssp.h index 721d05149e..13d89c2db6 100644 --- a/source4/auth/ntlmssp/ntlmssp.h +++ b/source4/auth/ntlmssp/ntlmssp.h @@ -185,4 +185,5 @@ struct gensec_ntlmssp_state struct auth_serversupplied_info *server_info; }; +struct auth_session_info; #include "auth/ntlmssp/proto.h" diff --git a/source4/auth/ntlmssp/ntlmssp_client.c b/source4/auth/ntlmssp/ntlmssp_client.c index acb17330fb..79f62349a6 100644 --- a/source4/auth/ntlmssp/ntlmssp_client.c +++ b/source4/auth/ntlmssp/ntlmssp_client.c @@ -27,7 +27,7 @@ #include "auth/ntlmssp/ntlmssp.h" #include "auth/ntlmssp/msrpc_parse.h" #include "lib/crypto/crypto.h" -#include "libcli/auth/proto.h" +#include "libcli/auth/libcli_auth.h" /********************************************************************* Client side NTLMSSP diff --git a/source4/auth/ntlmssp/ntlmssp_server.c b/source4/auth/ntlmssp/ntlmssp_server.c index 0598ff8f1d..44f7fa8b8c 100644 --- a/source4/auth/ntlmssp/ntlmssp_server.c +++ b/source4/auth/ntlmssp/ntlmssp_server.c @@ -29,7 +29,7 @@ #include "lib/crypto/crypto.h" #include "pstring.h" #include "system/filesys.h" -#include "libcli/auth/proto.h" +#include "libcli/auth/libcli_auth.h" /** * Set a username on an NTLMSSP context - ensures it is talloc()ed |