svn commit: samba r15676 - in branches/SAMBA_3_0/source/auth: .

jra at samba.org jra at samba.org
Thu May 18 02:05:54 GMT 2006


Author: jra
Date: 2006-05-18 02:05:53 +0000 (Thu, 18 May 2006)
New Revision: 15676

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15676

Log:
Fix meaningless debug statement from uninitialized variable.
Spotted by "John E. Malmberg" <wb8tyw at qsl.net>.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/auth/auth_util.c


Changeset:
Modified: branches/SAMBA_3_0/source/auth/auth_util.c
===================================================================
--- branches/SAMBA_3_0/source/auth/auth_util.c	2006-05-18 01:45:18 UTC (rev 15675)
+++ branches/SAMBA_3_0/source/auth/auth_util.c	2006-05-18 02:05:53 UTC (rev 15676)
@@ -1198,7 +1198,6 @@
 {
 	TALLOC_CTX *mem_ctx;
 	DOM_SID group_sid;
-	NTSTATUS status;
 	BOOL ret;
 
 	mem_ctx = talloc_new(NULL);
@@ -1212,8 +1211,7 @@
 	TALLOC_FREE(mem_ctx);
 
 	if (!ret) {
-		DEBUG(10, ("lookup_name(%s) failed: %s\n", groupname,
-			   nt_errstr(status)));
+		DEBUG(10, ("lookup_name for (%s) failed.\n", groupname));
 		return False;
 	}
 



More information about the samba-cvs mailing list