diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:10 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:15 -0800 |
commit | 63598ff628b874e3d4778939ac6f2b70292c9360 (patch) | |
tree | a772550675fc421b187314716f1c2f0188ae876f /source3/auth | |
parent | fc111c7875e35c846dbe52f7d3dbce75cfc74336 (diff) | |
download | samba-63598ff628b874e3d4778939ac6f2b70292c9360.tar.gz samba-63598ff628b874e3d4778939ac6f2b70292c9360.tar.xz samba-63598ff628b874e3d4778939ac6f2b70292c9360.zip |
param: rename lp function and variable from "encrypted_passwords" to "encrypt_passwords"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c index c3797cf604..0fc8b63b59 100644 --- a/source3/auth/auth.c +++ b/source3/auth/auth.c @@ -462,7 +462,7 @@ NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx, break; case ROLE_STANDALONE: DEBUG(5,("Making default auth method list for server role = 'standalone server', encrypt passwords = yes\n")); - if (lp_encrypted_passwords()) { + if (lp_encrypt_passwords()) { auth_method_list = str_list_make_v3( talloc_tos(), "guest sam", NULL); |