diff options
Diffstat (limited to 'source4/auth/ntlm/auth_anonymous.c')
-rw-r--r-- | source4/auth/ntlm/auth_anonymous.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/ntlm/auth_anonymous.c b/source4/auth/ntlm/auth_anonymous.c index ab1aac2693f..9bdcf0cbcb4 100644 --- a/source4/auth/ntlm/auth_anonymous.c +++ b/source4/auth/ntlm/auth_anonymous.c @@ -24,7 +24,7 @@ #include "auth/ntlm/auth_proto.h" #include "param/param.h" -_PUBLIC_ NTSTATUS auth4_anonymous_init(void); +_PUBLIC_ NTSTATUS auth4_anonymous_init(TALLOC_CTX *); /** * Return a anonymous logon for anonymous users (username = "") @@ -95,7 +95,7 @@ static const struct auth_operations anonymous_auth_ops = { .check_password = anonymous_check_password }; -_PUBLIC_ NTSTATUS auth4_anonymous_init(void) +_PUBLIC_ NTSTATUS auth4_anonymous_init(TALLOC_CTX *ctx) { NTSTATUS ret; |