svn commit: samba r15677 - in trunk/source/auth: .

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


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

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

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

Modified:
   trunk/source/auth/auth_util.c


Changeset:
Modified: trunk/source/auth/auth_util.c
===================================================================
--- trunk/source/auth/auth_util.c	2006-05-18 02:05:53 UTC (rev 15676)
+++ trunk/source/auth/auth_util.c	2006-05-18 02:05:56 UTC (rev 15677)
@@ -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