summaryrefslogtreecommitdiff
path: root/source4/torture/rpc/schannel.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2005-03-22 10:33:53 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:11 -0500
commite25cff1c110c5b4380caf5f5fb0336c37da78b10 (patch)
treedf2896a596c4678625a41fc0dbc31a57d9873c6b /source4/torture/rpc/schannel.c
parent645711c602313940dcf80ec786557920ecfbf884 (diff)
downloadsamba-e25cff1c110c5b4380caf5f5fb0336c37da78b10.tar.gz
samba-e25cff1c110c5b4380caf5f5fb0336c37da78b10.tar.bz2
samba-e25cff1c110c5b4380caf5f5fb0336c37da78b10.zip
r5942: A couple of small changes to fix things up with the new credentials
infrustructure. Andrew Bartlett (This used to be commit d51718ab8a3771ada4e342a384b744edb803db40)
Diffstat (limited to 'source4/torture/rpc/schannel.c')
-rw-r--r--source4/torture/rpc/schannel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/rpc/schannel.c b/source4/torture/rpc/schannel.c
index d27285a9cc..d60a8bb60b 100644
--- a/source4/torture/rpc/schannel.c
+++ b/source4/torture/rpc/schannel.c
@@ -23,6 +23,7 @@
#include "includes.h"
#include "librpc/gen_ndr/ndr_samr.h"
#include "librpc/gen_ndr/ndr_netlogon.h"
+#include "lib/cmdline/popt_common.h"
#define TEST_MACHINE_NAME "schanneltest"
@@ -64,9 +65,8 @@ static BOOL test_netlogon_ops(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
struct netr_LogonSamLogon r;
struct netr_Authenticator auth, auth2;
struct netr_NetworkInfo ninfo;
- const char *username = lp_parm_string(-1, "torture", "username");
- const char *password = lp_parm_string(-1, "torture", "password");
-
+ const char *username = cli_credentials_get_username(cmdline_credentials);
+ const char *password = cli_credentials_get_password(cmdline_credentials);
int i;
BOOL ret = True;