[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha3-1539-gb3d0246

Volker Lendecke vlendec at samba.org
Fri May 16 13:40:01 GMT 2008


The branch, v4-0-test has been updated
       via  b3d024676426000380ad86a2a4b83e7b21478978 (commit)
       via  a9a0f24f7299c1480d8047d97c703aca8e94c79f (commit)
      from  5ca4f76703485d68b1aa6b38beaf208555c0cbfe (commit)

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


- Log -----------------------------------------------------------------
commit b3d024676426000380ad86a2a4b83e7b21478978
Author: Volker Lendecke <vl at samba.org>
Date:   Thu May 15 18:09:56 2008 +0200

    Fix an uninitialized variable warning

commit a9a0f24f7299c1480d8047d97c703aca8e94c79f
Author: Volker Lendecke <vl at samba.org>
Date:   Fri May 16 15:38:16 2008 +0200

    In torture_leave_domain, say what account was deleted

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

Summary of changes:
 source/lib/ldb_wrap.c         |    2 +-
 source/torture/rpc/testjoin.c |    6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/lib/ldb_wrap.c b/source/lib/ldb_wrap.c
index b564976..f47d0d5 100644
--- a/source/lib/ldb_wrap.c
+++ b/source/lib/ldb_wrap.c
@@ -44,7 +44,7 @@ static void ldb_wrap_debug(void *context, enum ldb_debug_level level,
 static void ldb_wrap_debug(void *context, enum ldb_debug_level level, 
 			   const char *fmt, va_list ap)
 {
-	int samba_level;
+	int samba_level = -1;
 	char *s = NULL;
 	switch (level) {
 	case LDB_DEBUG_FATAL:
diff --git a/source/torture/rpc/testjoin.c b/source/torture/rpc/testjoin.c
index 100e7ce..51efd99 100644
--- a/source/torture/rpc/testjoin.c
+++ b/source/torture/rpc/testjoin.c
@@ -508,9 +508,11 @@ _PUBLIC_ void torture_leave_domain(struct test_join *join)
 	/* Delete machine account */	                                                                                                                                                                                                                                                                                                                
 	status = dcerpc_samr_DeleteUser(join->p, join, &d);
 	if (!NT_STATUS_IS_OK(status)) {
-		printf("Delete of machine account failed\n");
+		printf("Delete of machine account %s failed\n",
+		       join->netbios_name);
 	} else {
-		printf("Delete of machine account was successful.\n");
+		printf("Delete of machine account %s was successful.\n",
+		       join->netbios_name);
 	}
 
 	if (join->libnet_r) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list