summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2020-06-10 12:49:28 +0200
committerAndreas Schneider <asn@cryptomilk.org>2020-08-19 16:22:43 +0000
commit2bf58f182b1bfd39a5f549c5b539be58deddfe6b (patch)
tree1408a53eef9fb1207eb4ee55637cfea85518415c /source3
parent85e2660b94cc066b7f0deeec2a72d4fddc3463e7 (diff)
downloadsamba-2bf58f182b1bfd39a5f549c5b539be58deddfe6b.tar.gz
s3:utils: Remove obsolete force encryption from smbcquotas
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/smbcquotas.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c
index fea066ce468..4ceac7b3ab0 100644
--- a/source3/utils/smbcquotas.c
+++ b/source3/utils/smbcquotas.c
@@ -533,17 +533,6 @@ static struct cli_state *connect_one(const char *share)
return NULL;
}
- if (get_cmdline_auth_info_smb_encrypt(popt_get_cmdline_auth_info())) {
- nt_status = cli_cm_force_encryption_creds(c,
- get_cmdline_auth_info_creds(
- popt_get_cmdline_auth_info()),
- share);
- if (!NT_STATUS_IS_OK(nt_status)) {
- cli_shutdown(c);
- return NULL;
- }
- }
-
return c;
}