1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-20 14:03:59 +03:00

Make auth.c compile again. I'm not sure what this does though...

Volker
(This used to be commit 8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4)
This commit is contained in:
Volker Lendecke 2003-03-25 09:47:52 +00:00
parent 148d95ab87
commit 910da34e6d

View File

@ -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;