diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-05-26 16:38:35 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-05-26 16:38:35 +0000 |
commit | f527ca3d52e76122651f133780654fc057678b25 (patch) | |
tree | 9ab5c3e4919b2140b234e965894101c4917450ea /source3 | |
parent | 8e0fe32574ae2ccd2067f3b330cb29b30251ab39 (diff) | |
download | samba-f527ca3d52e76122651f133780654fc057678b25.tar.gz samba-f527ca3d52e76122651f133780654fc057678b25.tar.bz2 samba-f527ca3d52e76122651f133780654fc057678b25.zip |
Correctly initialize winbind auth method.
(This used to be commit b9e7ce9d85c4203779d6b9bfb2e65a4ed5fe33ff)
Diffstat (limited to 'source3')
-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; |