mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
credentials: Fix the build.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Oct 11 02:47:50 UTC 2010 on sn-devel-104
This commit is contained in:
@ -25,7 +25,7 @@
|
|||||||
#include "librpc/gen_ndr/samr.h" /* for struct samrPassword */
|
#include "librpc/gen_ndr/samr.h" /* for struct samrPassword */
|
||||||
#include "auth/credentials/credentials.h"
|
#include "auth/credentials/credentials.h"
|
||||||
#include "auth/credentials/credentials_krb5.h"
|
#include "auth/credentials/credentials_krb5.h"
|
||||||
#include "auth/credentials/credentials_proto.h"
|
#include "auth/kerberos/kerberos_util.h"
|
||||||
#include "libcli/auth/libcli_auth.h"
|
#include "libcli/auth/libcli_auth.h"
|
||||||
#include "lib/events/events.h"
|
#include "lib/events/events.h"
|
||||||
#include "param/param.h"
|
#include "param/param.h"
|
||||||
|
@ -299,4 +299,5 @@ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred,
|
|||||||
char **error_string);
|
char **error_string);
|
||||||
int cli_credentials_get_kvno(struct cli_credentials *cred);
|
int cli_credentials_get_kvno(struct cli_credentials *cred);
|
||||||
|
|
||||||
|
|
||||||
#endif /* __CREDENTIALS_H__ */
|
#endif /* __CREDENTIALS_H__ */
|
||||||
|
@ -52,4 +52,7 @@ krb5_error_code impersonate_principal_from_credentials(TALLOC_CTX *parent_ctx,
|
|||||||
krb5_principal *princ,
|
krb5_principal *princ,
|
||||||
const char **error_string);
|
const char **error_string);
|
||||||
|
|
||||||
|
void cli_credentials_invalidate_client_gss_creds(struct cli_credentials *cred,
|
||||||
|
enum credentials_obtained obtained);
|
||||||
|
|
||||||
#endif /* __CREDENTIALS_KRB5_H__ */
|
#endif /* __CREDENTIALS_KRB5_H__ */
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include "../lib/util/util_ldb.h"
|
#include "../lib/util/util_ldb.h"
|
||||||
#include "auth/credentials/credentials.h"
|
#include "auth/credentials/credentials.h"
|
||||||
#include "auth/credentials/credentials_krb5.h"
|
#include "auth/credentials/credentials_krb5.h"
|
||||||
#include "auth/credentials/credentials_proto.h"
|
#include "auth/kerberos/kerberos_util.h"
|
||||||
#include "param/param.h"
|
#include "param/param.h"
|
||||||
#include "lib/events/events.h"
|
#include "lib/events/events.h"
|
||||||
#include "dsdb/samdb/samdb.h"
|
#include "dsdb/samdb/samdb.h"
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
bld.SAMBA_SUBSYSTEM('CREDENTIALS',
|
bld.SAMBA_SUBSYSTEM('CREDENTIALS',
|
||||||
source='credentials.c',
|
source='credentials.c',
|
||||||
|
autoproto='credentials_proto.h',
|
||||||
public_headers='credentials.h',
|
public_headers='credentials.h',
|
||||||
deps='LIBCRYPTO LIBSAMBA-ERRORS LIBEVENTS LIBCLI_AUTH LIBSECURITY',
|
deps='LIBCRYPTO LIBSAMBA-ERRORS LIBEVENTS LIBCLI_AUTH LIBSECURITY',
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user