diff options
author | Jeremy Allison <jra@samba.org> | 2002-12-23 23:54:10 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-12-23 23:54:10 +0000 |
commit | 98ac4503aca8f5a5a4268d89791e9a4491ce8645 (patch) | |
tree | b2924c73e39c05a8c3bf234a677f43ef821dd4cd /source3/auth | |
parent | fa997c54eb266b6203945827b332600cd58f1379 (diff) | |
download | samba-98ac4503aca8f5a5a4268d89791e9a4491ce8645.tar.gz samba-98ac4503aca8f5a5a4268d89791e9a4491ce8645.tar.bz2 samba-98ac4503aca8f5a5a4268d89791e9a4491ce8645.zip |
Finish adding strings to all talloc_init() calls.
Jeremy.
(This used to be commit aa8439a49ec4b9f433745fefa1e769e45398f4df)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_winbind.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index c6a1727ebe..e45e2c879f 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -127,9 +127,8 @@ 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)) { + if (!make_auth_methods(auth_context, auth_method)) return NT_STATUS_NO_MEMORY; - } (*auth_method)->name = "winbind"; (*auth_method)->auth = check_winbind_security; |