summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-12-23 23:53:56 +0000
committerJeremy Allison <jra@samba.org>2002-12-23 23:53:56 +0000
commit0fdf60f0512f1a4443e315d764d59636c2075fe7 (patch)
tree4fa8b751ad63a6ffaf2046081edf63d3963df420 /source3/auth
parent54af5d0f252739240b933b61dffda445d1ca1337 (diff)
downloadsamba-0fdf60f0512f1a4443e315d764d59636c2075fe7.tar.gz
samba-0fdf60f0512f1a4443e315d764d59636c2075fe7.tar.bz2
samba-0fdf60f0512f1a4443e315d764d59636c2075fe7.zip
Finish adding strings to all talloc_init() calls.
Jeremy. (This used to be commit 784d15761c3271bfd602866f8f9f880dac77671c)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_winbind.c3
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;