diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-09-08 12:42:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:05:38 -0500 |
commit | ffeee68e4b72dd94fee57366bd8d38b8c284c3d4 (patch) | |
tree | a34ba763c0c9d4dc10a58484ed8277f2a6cbfa2f /source4/auth | |
parent | 1dfe79de91858d7568a1131d010a383e459dd8f9 (diff) | |
download | samba-ffeee68e4b72dd94fee57366bd8d38b8c284c3d4.tar.gz samba-ffeee68e4b72dd94fee57366bd8d38b8c284c3d4.tar.bz2 samba-ffeee68e4b72dd94fee57366bd8d38b8c284c3d4.zip |
r25026: Move param/param.h out of includes.h
(This used to be commit abe8349f9b4387961ff3665d8c589d61cd2edf31)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth.c | 1 | ||||
-rw-r--r-- | source4/auth/auth_sam.c | 1 | ||||
-rw-r--r-- | source4/auth/auth_unix.c | 1 | ||||
-rw-r--r-- | source4/auth/auth_util.c | 1 | ||||
-rw-r--r-- | source4/auth/credentials/credentials.c | 1 | ||||
-rw-r--r-- | source4/auth/credentials/credentials_files.c | 1 | ||||
-rw-r--r-- | source4/auth/gensec/gensec.c | 1 | ||||
-rw-r--r-- | source4/auth/gensec/gensec_gssapi.c | 1 | ||||
-rw-r--r-- | source4/auth/gensec/gensec_krb5.c | 1 | ||||
-rw-r--r-- | source4/auth/gensec/schannel_state.c | 1 | ||||
-rw-r--r-- | source4/auth/kerberos/krb5_init_context.c | 1 | ||||
-rw-r--r-- | source4/auth/ntlm_check.c | 1 | ||||
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp_client.c | 1 | ||||
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp_server.c | 1 | ||||
-rw-r--r-- | source4/auth/sam.c | 1 |
15 files changed, 15 insertions, 0 deletions
diff --git a/source4/auth/auth.c b/source4/auth/auth.c index b74bbc3371..8cd46cd6fe 100644 --- a/source4/auth/auth.c +++ b/source4/auth/auth.c @@ -23,6 +23,7 @@ #include "auth/auth.h" #include "lib/events/events.h" #include "build.h" +#include "param/param.h" /*************************************************************************** Set a fixed challenge diff --git a/source4/auth/auth_sam.c b/source4/auth/auth_sam.c index 840db3ede6..e9b24d5f60 100644 --- a/source4/auth/auth_sam.c +++ b/source4/auth/auth_sam.c @@ -29,6 +29,7 @@ #include "dsdb/samdb/samdb.h" #include "libcli/security/security.h" #include "libcli/ldap/ldap.h" +#include "param/param.h" extern const char *user_attrs[]; extern const char *domain_ref_attrs[]; diff --git a/source4/auth/auth_unix.c b/source4/auth/auth_unix.c index 61e004f592..dd000e9445 100644 --- a/source4/auth/auth_unix.c +++ b/source4/auth/auth_unix.c @@ -24,6 +24,7 @@ #include "system/passwd.h" /* needed by some systems for struct passwd */ #include "lib/socket/socket.h" #include "auth/pam_errors.h" +#include "param/param.h" /* TODO: look at how to best fill in parms retrieveing a struct passwd info * except in case USER_INFO_DONT_CHECK_UNIX_ACCOUNT is set diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 693ec35f86..8398bbfaf4 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -27,6 +27,7 @@ #include "libcli/auth/libcli_auth.h" #include "dsdb/samdb/samdb.h" #include "auth/credentials/credentials.h" +#include "param/param.h" /* this default function can be used by mostly all backends * which don't want to set a challenge diff --git a/source4/auth/credentials/credentials.c b/source4/auth/credentials/credentials.c index c32efb045f..2899bc5605 100644 --- a/source4/auth/credentials/credentials.c +++ b/source4/auth/credentials/credentials.c @@ -27,6 +27,7 @@ #include "auth/credentials/credentials_krb5.h" #include "libcli/auth/libcli_auth.h" #include "lib/events/events.h" +#include "param/param.h" /** * Create a new credentials structure diff --git a/source4/auth/credentials/credentials_files.c b/source4/auth/credentials/credentials_files.c index 2b6bc4f9d6..5770dbf057 100644 --- a/source4/auth/credentials/credentials_files.c +++ b/source4/auth/credentials/credentials_files.c @@ -29,6 +29,7 @@ #include "db_wrap.h" #include "auth/credentials/credentials.h" #include "auth/credentials/credentials_krb5.h" +#include "param/param.h" /** * Read a file descriptor, and parse it for a password (eg from a file or stdin) diff --git a/source4/auth/gensec/gensec.c b/source4/auth/gensec/gensec.c index 51d0056920..a974cd5138 100644 --- a/source4/auth/gensec/gensec.c +++ b/source4/auth/gensec/gensec.c @@ -27,6 +27,7 @@ #include "librpc/rpc/dcerpc.h" #include "auth/credentials/credentials.h" #include "auth/gensec/gensec.h" +#include "param/param.h" /* the list of currently registered GENSEC backends */ static struct gensec_security_ops **generic_security_ops; diff --git a/source4/auth/gensec/gensec_gssapi.c b/source4/auth/gensec/gensec_gssapi.c index dd9f19ac43..a3351f75a8 100644 --- a/source4/auth/gensec/gensec_gssapi.c +++ b/source4/auth/gensec/gensec_gssapi.c @@ -34,6 +34,7 @@ #include "auth/credentials/credentials.h" #include "auth/credentials/credentials_krb5.h" #include "auth/gensec/gensec.h" +#include "param/param.h" enum gensec_gssapi_sasl_state { diff --git a/source4/auth/gensec/gensec_krb5.c b/source4/auth/gensec/gensec_krb5.c index 811e562353..81b4181ce7 100644 --- a/source4/auth/gensec/gensec_krb5.c +++ b/source4/auth/gensec/gensec_krb5.c @@ -36,6 +36,7 @@ #include "auth/credentials/credentials.h" #include "auth/credentials/credentials_krb5.h" #include "auth/gensec/gensec.h" +#include "param/param.h" enum GENSEC_KRB5_STATE { GENSEC_KRB5_SERVER_START, diff --git a/source4/auth/gensec/schannel_state.c b/source4/auth/gensec/schannel_state.c index a911ed9288..afbbd618eb 100644 --- a/source4/auth/gensec/schannel_state.c +++ b/source4/auth/gensec/schannel_state.c @@ -26,6 +26,7 @@ #include "db_wrap.h" #include "libcli/auth/libcli_auth.h" #include "auth/auth.h" +#include "param/param.h" /** connect to the schannel ldb diff --git a/source4/auth/kerberos/krb5_init_context.c b/source4/auth/kerberos/krb5_init_context.c index c11d93f44a..000e715305 100644 --- a/source4/auth/kerberos/krb5_init_context.c +++ b/source4/auth/kerberos/krb5_init_context.c @@ -29,6 +29,7 @@ #include "system/network.h" #include "lib/events/events.h" #include "roken.h" +#include "param/param.h" /* context structure for operations on cldap packets diff --git a/source4/auth/ntlm_check.c b/source4/auth/ntlm_check.c index 5c5ad1f3ca..d3dbc3ce66 100644 --- a/source4/auth/ntlm_check.c +++ b/source4/auth/ntlm_check.c @@ -23,6 +23,7 @@ #include "lib/crypto/crypto.h" #include "librpc/gen_ndr/netlogon.h" #include "libcli/auth/libcli_auth.h" +#include "param/param.h" /**************************************************************************** Core of smb password checking routine. diff --git a/source4/auth/ntlmssp/ntlmssp_client.c b/source4/auth/ntlmssp/ntlmssp_client.c index 003394a21b..a98918a54b 100644 --- a/source4/auth/ntlmssp/ntlmssp_client.c +++ b/source4/auth/ntlmssp/ntlmssp_client.c @@ -28,6 +28,7 @@ #include "libcli/auth/libcli_auth.h" #include "auth/credentials/credentials.h" #include "auth/gensec/gensec.h" +#include "param/param.h" /********************************************************************* Client side NTLMSSP diff --git a/source4/auth/ntlmssp/ntlmssp_server.c b/source4/auth/ntlmssp/ntlmssp_server.c index 52b3bfcfc5..8b6920c978 100644 --- a/source4/auth/ntlmssp/ntlmssp_server.c +++ b/source4/auth/ntlmssp/ntlmssp_server.c @@ -30,6 +30,7 @@ #include "auth/credentials/credentials.h" #include "auth/gensec/gensec.h" #include "auth/auth.h" +#include "param/param.h" /** * Set a username on an NTLMSSP context - ensures it is talloc()ed diff --git a/source4/auth/sam.c b/source4/auth/sam.c index 6e160941d8..ed01c0bd93 100644 --- a/source4/auth/sam.c +++ b/source4/auth/sam.c @@ -27,6 +27,7 @@ #include "libcli/security/security.h" #include "libcli/ldap/ldap.h" #include "librpc/gen_ndr/ndr_netlogon.h" +#include "param/param.h" const char *user_attrs[] = { /* required for the krb5 kdc */ |