diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-05-26 16:38:48 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-05-26 16:38:48 +0000 |
commit | 2bd980585458be49ff924fd2544a337a34f596bb (patch) | |
tree | ee61f9739d20c220b27dcea8e31433a74c81cf7d | |
parent | 9a5a90b33454c9d4e451d260f58fe2a2c9c94501 (diff) | |
download | samba-2bd980585458be49ff924fd2544a337a34f596bb.tar.gz samba-2bd980585458be49ff924fd2544a337a34f596bb.tar.bz2 samba-2bd980585458be49ff924fd2544a337a34f596bb.zip |
Correctly initialize winbind auth method.
(This used to be commit 55cdb6b87850b483939a5d3edcd5be80be6f7493)
-rw-r--r-- | source3/auth/auth_winbind.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index 76b5c34183..79395a99c9 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -132,6 +132,9 @@ static NTSTATUS check_winbind_security(const struct auth_context *auth_context, /* module initialisation */ NTSTATUS auth_init_winbind(struct auth_context *auth_context, const char *param, auth_methods **auth_method) { + if (!make_auth_methods(auth_context, auth_method)) { + return NT_STATUS_NO_MEMORY; + } (*auth_method)->name = "winbind"; (*auth_method)->auth = check_winbind_security; |