From 038c75c0cb6307ee411cb3eabdf2305f2f3b653d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 10 Dec 2007 04:33:29 +0100 Subject: r26357: Add separate subsystem for auth_sam_reply parsing. (This used to be commit 2d61e7c96e249d7031b709e9f727626a78e435f1) --- source4/auth/config.mk | 9 +++++++-- source4/auth/kerberos/config.mk | 2 +- source4/auth/kerberos/kerberos_pac.c | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/config.mk b/source4/auth/config.mk index 789055408d..046ce026d0 100644 --- a/source4/auth/config.mk +++ b/source4/auth/config.mk @@ -15,10 +15,14 @@ PRIVATE_DEPENDENCIES = auth_session [SUBSYSTEM::auth_sam] PRIVATE_PROTO_HEADER = auth_sam.h -OBJ_FILES = sam.o auth_sam_reply.o ntlm_check.o -PUBLIC_DEPENDENCIES = SAMDB UTIL_LDB +OBJ_FILES = sam.o ntlm_check.o +PUBLIC_DEPENDENCIES = SAMDB UTIL_LDB LIBSECURITY PRIVATE_DEPENDENCIES = LDAP_ENCODE +[SUBSYSTEM::auth_sam_reply] +PRIVATE_PROTO_HEADER = auth_sam_reply.h +OBJ_FILES = auth_sam_reply.o + ####################### # Start MODULE auth_sam [MODULE::auth_sam_module] @@ -81,6 +85,7 @@ OBJ_FILES = \ auth_util.o \ auth_simple.o PUBLIC_DEPENDENCIES = LIBSECURITY SAMDB CREDENTIALS +PRIVATE_DEPENDENCIES = LIBSAMBA-UTIL # End SUBSYSTEM auth ####################### diff --git a/source4/auth/kerberos/config.mk b/source4/auth/kerberos/config.mk index 87c62fb6ed..1c70ef2e63 100644 --- a/source4/auth/kerberos/config.mk +++ b/source4/auth/kerberos/config.mk @@ -10,6 +10,6 @@ OBJ_FILES = kerberos.o \ gssapi_parse.o \ krb5_init_context.o PUBLIC_DEPENDENCIES = HEIMDAL_KRB5 NDR_KRB5PAC samba-socket LIBCLI_RESOLVE -PRIVATE_DEPENDENCIES = ASN1_UTIL auth_sam CREDENTIALS_KRB5 +PRIVATE_DEPENDENCIES = ASN1_UTIL auth_sam_reply CREDENTIALS_KRB5 # End SUBSYSTEM KERBEROS ################################# diff --git a/source4/auth/kerberos/kerberos_pac.c b/source4/auth/kerberos/kerberos_pac.c index 5fefd24cd1..6eea053e2b 100644 --- a/source4/auth/kerberos/kerberos_pac.c +++ b/source4/auth/kerberos/kerberos_pac.c @@ -28,7 +28,7 @@ #include "auth/kerberos/kerberos.h" #include "librpc/gen_ndr/ndr_krb5pac.h" #include "lib/ldb/include/ldb.h" -#include "auth/auth_sam.h" +#include "auth/auth_sam_reply.h" static krb5_error_code check_pac_checksum(TALLOC_CTX *mem_ctx, DATA_BLOB pac_data, -- cgit