[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-2495-g0aded23

Jeremy Allison jra at samba.org
Sat May 31 00:53:05 GMT 2008


The branch, v3-2-test has been updated
       via  0aded23c4f6fc726896f5b5955e913ca559e7713 (commit)
      from  fb3e5a14dabeb36b55c31ab3b6c502de1e0d1fe0 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 0aded23c4f6fc726896f5b5955e913ca559e7713
Author: Jeremy Allison <jra at samba.org>
Date:   Fri May 30 17:52:05 2008 -0700

    Fix valgrind bug in debug statement. Don't reference uninitialized memory.
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source/winbindd/idmap_util.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/winbindd/idmap_util.c b/source/winbindd/idmap_util.c
index bf06cd8..0d24070 100644
--- a/source/winbindd/idmap_util.c
+++ b/source/winbindd/idmap_util.c
@@ -157,11 +157,10 @@ NTSTATUS idmap_sid_to_gid(DOM_SID *sid, gid_t *gid)
 	}
 
 	if ((map.status != ID_MAPPED) || (map.xid.type != ID_TYPE_GID)) {
-		DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u,%u]\n", 
+		DEBUG(10, ("sid [%s] not mapped to a gid [%u,%u]\n", 
 			   sid_string_dbg(sid),
 			   map.status, 
-			   map.xid.type, 
-			   map.xid.id));
+			   map.xid.type));
 		return NT_STATUS_NONE_MAPPED;
 	}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list