svn commit: samba r1982 - branches/SAMBA_4_0/source/auth

tridge at samba.org tridge at samba.org
Sat Aug 21 01:20:51 GMT 2004


Author: tridge
Date: 2004-08-21 01:20:51 +0000 (Sat, 21 Aug 2004)
New Revision: 1982

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/&rev=1982&nolog=1

Log:
i is not initialised or used
Modified:
   branches/SAMBA_4_0/source/auth/auth.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/auth.c
===================================================================
--- branches/SAMBA_4_0/source/auth/auth.c	2004-08-21 00:43:26 UTC (rev 1981)
+++ branches/SAMBA_4_0/source/auth/auth.c	2004-08-21 01:20:51 UTC (rev 1982)
@@ -307,7 +307,6 @@
 {
 	struct auth_methods *list = NULL;
 	struct auth_methods *t = NULL;
-	int i;
 	NTSTATUS nt_status;
 
 	if (!text_list) {
@@ -338,7 +337,7 @@
 
 		ops = auth_backend_byname(module_name);
 		if (!ops) {
-			DEBUG(5,("make_auth_context_text_list: Found auth method %s (at pos %d)\n", *text_list, i));
+			DEBUG(5,("make_auth_context_text_list: Found auth method %s\n", *text_list));
 			SAFE_FREE(module_name);
 			break;
 		}



More information about the samba-cvs mailing list