Move the authenticaion subsystem over to the same 'module:options' syntax
[samba.git] / source3 / auth / auth_domain.c
index d520dabbb26ff8f181e3eaaa24c20656b8054eac..91c111b557b16467d06b4b58c4fa1839e1e91d2f 100644 (file)
@@ -511,14 +511,14 @@ static NTSTATUS check_ntdomain_security(const struct auth_context *auth_context,
 }
 
 /* module initialisation */
-BOOL auth_init_ntdomain(struct auth_context *auth_context, auth_methods **auth_method) 
+NTSTATUS auth_init_ntdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method) 
 {
        if (!make_auth_methods(auth_context, auth_method)) {
-               return False;
+               return NT_STATUS_NO_MEMORY;
        }
 
        (*auth_method)->auth = check_ntdomain_security;
-       return True;
+       return NT_STATUS_OK;
 }
 
 
@@ -598,12 +598,12 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte
 }
 
 /* module initialisation */
-BOOL auth_init_trustdomain(struct auth_context *auth_context, auth_methods **auth_method) 
+NTSTATUS auth_init_trustdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method) 
 {
        if (!make_auth_methods(auth_context, auth_method)) {
-               return False;
+               return NT_STATUS_NO_MEMORY;
        }
 
        (*auth_method)->auth = check_trustdomain_security;
-       return True;
+       return NT_STATUS_OK;
 }