Make auth.c compile again. I'm not sure what this does though...
authorVolker Lendecke <vlendec@samba.org>
Tue, 25 Mar 2003 09:47:52 +0000 (09:47 +0000)
committerVolker Lendecke <vlendec@samba.org>
Tue, 25 Mar 2003 09:47:52 +0000 (09:47 +0000)
Volker
(This used to be commit 8e3f300f21e23b7e6b68ddcc45d581a962cd8aa4)

source3/auth/auth.c

index 4416f93fba085142c8f496222794cd4462456ddb..f9df255595d429f652603acada53cd05345e53d6 100644 (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;