summaryrefslogtreecommitdiffstats
path: root/source/auth
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2003-03-25 09:47:52 +0000
committerVolker Lendecke <vlendec@samba.org>2003-03-25 09:47:52 +0000
commit8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4 (patch)
treed435d26177c7e57ff2a444124c7db37f31c1626d /source/auth
parent44d9062f91d13b43b1e78c30931a017031f17116 (diff)
downloadsamba-8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4.tar.gz
samba-8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4.tar.xz
samba-8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4.zip
Make auth.c compile again. I'm not sure what this does though...
Volker
Diffstat (limited to 'source/auth')
-rw-r--r--source/auth/auth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/auth/auth.c b/source/auth/auth.c
index 4416f93fba0..f9df255595d 100644
--- a/source/auth/auth.c
+++ b/source/auth/auth.c
@@ -361,13 +361,14 @@ static NTSTATUS make_auth_context_text_list(struct auth_context **auth_context,
}
for (;*text_list; text_list++) {
- DEBUG(5,("make_auth_context_text_list: Attempting to find an auth method to match %s\n",
- *text_list));
struct auth_init_function_entry *entry;
char *module_name = smb_xstrdup(*text_list);
char *module_params = NULL;
char *p;
+ DEBUG(5,("make_auth_context_text_list: Attempting to find an auth method to match %s\n",
+ *text_list));
+
p = strchr(module_name, ':');
if (p) {
*p = 0;