diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-05-26 04:35:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:38 -0500 |
commit | 72209db1a1f76a1ded0e77a9ab4619836f78b529 (patch) | |
tree | ad5e3ddf87f97668e4730db23af98db4d4bb3a16 /source4/torture/rpc | |
parent | d6ac0e7d2f22f162eaf1bbc9cca9b1e99194c97b (diff) | |
download | samba-72209db1a1f76a1ded0e77a9ab4619836f78b529.tar.gz samba-72209db1a1f76a1ded0e77a9ab4619836f78b529.tar.bz2 samba-72209db1a1f76a1ded0e77a9ab4619836f78b529.zip |
r15898: use d_printf() in some more places to fix more torture seg faults on
solaris
(This used to be commit dd1ef82560c62c8c10e9d43b8d1d68512fe0aae5)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/netlogon.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c index b66ea719cc..71bd8b097f 100644 --- a/source4/torture/rpc/netlogon.c +++ b/source4/torture/rpc/netlogon.c @@ -305,7 +305,7 @@ static BOOL test_SetPassword(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) creds_des_encrypt(creds, &r.in.new_password); printf("Testing ServerPasswordSet on machine account\n"); - printf("Changing machine account password to '%s'\n", password); + d_printf("Changing machine account password to '%s'\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -324,7 +324,7 @@ static BOOL test_SetPassword(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) allows the password to be set to the same value twice in a row (match win2k3) */ printf("Testing a second ServerPasswordSet on machine account\n"); - printf("Changing machine account password to '%s' (same as previous run)\n", password); + d_printf("Changing machine account password to '%s' (same as previous run)\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -377,7 +377,7 @@ static BOOL test_SetPassword2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) r.in.new_password.length = IVAL(password_buf.data, 512); printf("Testing ServerPasswordSet2 on machine account\n"); - printf("Changing machine account password to '%s'\n", password); + d_printf("Changing machine account password to '%s'\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -409,7 +409,7 @@ static BOOL test_SetPassword2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) r.in.new_password.length = IVAL(password_buf.data, 512); printf("Testing ServerPasswordSet2 on machine account\n"); - printf("Changing machine account password to '%s'\n", password); + d_printf("Changing machine account password to '%s'\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -440,7 +440,7 @@ static BOOL test_SetPassword2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) r.in.new_password.length = IVAL(password_buf.data, 512); printf("Testing second ServerPasswordSet2 on machine account\n"); - printf("Changing machine account password to '%s'\n", password); + d_printf("Changing machine account password to '%s'\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -459,7 +459,7 @@ static BOOL test_SetPassword2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) allows the password to be set to the same value twice in a row (match win2k3) */ printf("Testing a second ServerPasswordSet2 on machine account\n"); - printf("Changing machine account password to '%s' (same as previous run)\n", password); + d_printf("Changing machine account password to '%s' (same as previous run)\n", password); creds_client_authenticator(creds, &r.in.credential); @@ -548,7 +548,7 @@ BOOL test_netlogon_ops(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, r.in.logon_level = 2; r.in.logon.network = &ninfo; - printf("Testing LogonSamLogon with name %s\n", ninfo.identity_info.account_name.string); + d_printf("Testing LogonSamLogon with name %s\n", ninfo.identity_info.account_name.string); for (i=2;i<3;i++) { ZERO_STRUCT(auth2); |