summaryrefslogtreecommitdiff
path: root/source3/utils/smbcquotas.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-12-06 18:58:01 -0800
committerJeremy Allison <jra@samba.org>2007-12-06 18:58:01 -0800
commite2ae63bcf72ac6a98d3b74281cba514b2e53f306 (patch)
treeffb0f02eb9df8e1e1170c9ad815b6f9a8a49a871 /source3/utils/smbcquotas.c
parent79c3aef7ea66b61a9df89ed40943586ca54c82ab (diff)
downloadsamba-e2ae63bcf72ac6a98d3b74281cba514b2e53f306.tar.gz
samba-e2ae63bcf72ac6a98d3b74281cba514b2e53f306.tar.bz2
samba-e2ae63bcf72ac6a98d3b74281cba514b2e53f306.zip
Make all the tools use the proper accessor functions.
Jeremy. (This used to be commit 6d61bb87975839adb25c304e5e5041f91b12d236)
Diffstat (limited to 'source3/utils/smbcquotas.c')
-rw-r--r--source3/utils/smbcquotas.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c
index 3aa9e76a14..34a547d404 100644
--- a/source3/utils/smbcquotas.c
+++ b/source3/utils/smbcquotas.c
@@ -373,20 +373,22 @@ static struct cli_state *connect_one(const char *share)
NTSTATUS nt_status;
zero_addr(&ss);
- if (!cmdline_auth_info.got_pass) {
+ if (!get_cmdline_auth_info_got_pass()) {
char *pass = getpass("Password: ");
if (pass) {
- pstrcpy(cmdline_auth_info.password, pass);
- cmdline_auth_info.got_pass = True;
+ set_cmdline_auth_info_password(pass);
}
}
if (NT_STATUS_IS_OK(nt_status = cli_full_connection(&c, global_myname(), server,
- &ss, 0,
- share, "?????",
- cmdline_auth_info.username, lp_workgroup(),
- cmdline_auth_info.password, 0,
- cmdline_auth_info.signing_state, NULL))) {
+ &ss, 0,
+ share, "?????",
+ get_cmdline_auth_info_username(),
+ lp_workgroup(),
+ get_cmdline_auth_info_password(),
+ 0,
+ get_cmdline_auth_info_signing_state(),
+ NULL))) {
return c;
} else {
DEBUG(0,("cli_full_connection failed! (%s)\n", nt_errstr(nt_status)));
@@ -511,7 +513,7 @@ FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT", "SETSTRING" },
todo = USER_QUOTA;
if (!fix_user) {
- username_str = talloc_strdup(frame, cmdline_auth_info.username);
+ username_str = talloc_strdup(frame, get_cmdline_auth_info_username());
if (!username_str) {
exit(EXIT_PARSE_ERROR);
}