diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-05-05 15:23:57 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-05-05 15:23:57 +1000 |
commit | 7ee76eeae5b3e9e5f5b226039e7276897f5e6764 (patch) | |
tree | d2de6ee6008582b0d521a8b6a446fd2886aa8a37 /source4/utils | |
parent | 2c95244f1115c87a8ec3101427680a834d71ceaf (diff) | |
download | samba-7ee76eeae5b3e9e5f5b226039e7276897f5e6764.tar.gz samba-7ee76eeae5b3e9e5f5b226039e7276897f5e6764.tar.bz2 samba-7ee76eeae5b3e9e5f5b226039e7276897f5e6764.zip |
Move NTLM authentication details into auth/ntlm
This should help clarify the role of the various files around here
(done on Jelmer's request).
Andrew Bartlett
(This used to be commit efa399037511ced8978f2e7661a71aac7a384883)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/config.mk | 1 | ||||
-rw-r--r-- | source4/utils/ntlm_auth.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source4/utils/config.mk b/source4/utils/config.mk index a7d82684e4..13f3b0a145 100644 --- a/source4/utils/config.mk +++ b/source4/utils/config.mk @@ -13,6 +13,7 @@ PRIVATE_DEPENDENCIES = \ gensec \ LIBCLI_RESOLVE \ auth \ + ntlm_check \ MESSAGING \ LIBEVENTS # End BINARY ntlm_auth diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 07c0e4f31e..95029deffa 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -30,6 +30,7 @@ #include "auth/auth.h" #include "librpc/gen_ndr/ndr_netlogon.h" #include "auth/auth_sam.h" +#include "auth/ntlm/ntlm_check.h" #include "pstring.h" #include "libcli/auth/libcli_auth.h" #include "libcli/security/security.h" |