1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-03 04:23:50 +03:00

Add support for the new modules system to auth/ (merge from HEAD)

This commit is contained in:
Jelmer Vernooij
-
parent 03a1f46e34
commit c7a1de090d
13 changed files with 158 additions and 112 deletions

View File

@@ -518,4 +518,9 @@ NTSTATUS auth_init_samstrict(struct auth_context *auth_context, const char *para
return NT_STATUS_OK;
}
int auth_sam_init(void)
{
smb_register_auth("samstrict", auth_init_samstrict, AUTH_INTERFACE_VERSION);
smb_register_auth("sam", auth_init_sam, AUTH_INTERFACE_VERSION);
return True;
}