[SCM] Samba Shared Repository - branch master updated

Günther Deschner gd at samba.org
Mon Feb 8 06:33:03 MST 2010


The branch, master has been updated
       via  aa72950... s4-smbtorture: skip over ValidatePassword if DCERPC error is returned.
      from  a8d6549... s4:subtree_delete - "NULL" as format string isn't allowed on FreeBSD

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit aa72950b3d08c1964cd734e7b49ef43c959a2fcc
Author: Günther Deschner <gd at samba.org>
Date:   Wed Dec 9 11:21:08 2009 +0100

    s4-smbtorture: skip over ValidatePassword if DCERPC error is returned.
    
    Guenther

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

Summary of changes:
 source4/torture/rpc/samr.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c
index 4ab4a2c..62716da 100644
--- a/source4/torture/rpc/samr.c
+++ b/source4/torture/rpc/samr.c
@@ -7661,6 +7661,10 @@ static bool test_samr_ValidatePassword(struct dcerpc_pipe *p, struct torture_con
 	for (i=0; passwords[i]; i++) {
 		req.req3.password.string = passwords[i];
 		status = dcerpc_samr_ValidatePassword(p, tctx, &r);
+		if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT) &&
+		    p->last_fault_code == DCERPC_FAULT_OP_RNG_ERROR) {
+			torture_skip(tctx, "ValidatePassword not supported by server\n");
+		}
 		torture_assert_ntstatus_ok(tctx, status, "samr_ValidatePassword");
 		torture_comment(tctx, "Server %s password '%s' with code %i\n",
 				repp->ctr3.status==SAMR_VALIDATION_STATUS_SUCCESS?"allowed":"refused",


-- 
Samba Shared Repository


More information about the samba-cvs mailing list