summaryrefslogtreecommitdiffstats
path: root/source3/smbd/service.c
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-02-03 15:01:01 +1300
committerJeremy Allison <jra@samba.org>2014-02-07 16:19:09 -0800
commite02e9a3d6c9c459b2bf7beac1d4a6d77b1066af2 (patch)
tree3010c015f1db80369f37a29a84115dcc61e5c018 /source3/smbd/service.c
parent60d46fff751be559e5c9a11f2070e8d3f35ec6b3 (diff)
downloadsamba-e02e9a3d6c9c459b2bf7beac1d4a6d77b1066af2.tar.gz
samba-e02e9a3d6c9c459b2bf7beac1d4a6d77b1066af2.tar.xz
samba-e02e9a3d6c9c459b2bf7beac1d4a6d77b1066af2.zip
param: rename lp function and variable from 'casesensitive' to 'case_sensitive'
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/smbd/service.c')
-rw-r--r--source3/smbd/service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 8af85afec79..60fae30d021 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -206,7 +206,7 @@ bool set_current_service(connection_struct *conn, uint16 flags, bool do_chdir)
last_flags = flags;
/* Obey the client case sensitivity requests - only for clients that support it. */
- switch (lp_casesensitive(snum)) {
+ switch (lp_case_sensitive(snum)) {
case Auto:
{
/* We need this uglyness due to DOS/Win9x clients that lie about case insensitivity. */
@@ -562,12 +562,12 @@ static NTSTATUS make_connection_snum(struct smbd_server_connection *sconn,
( lp_enable_asu_support() && strequal(dev,"ADMIN$")) );
/* Case options for the share. */
- if (lp_casesensitive(snum) == Auto) {
+ if (lp_case_sensitive(snum) == Auto) {
/* We will be setting this per packet. Set to be case
* insensitive for now. */
conn->case_sensitive = False;
} else {
- conn->case_sensitive = (bool)lp_casesensitive(snum);
+ conn->case_sensitive = (bool)lp_case_sensitive(snum);
}
conn->case_preserve = lp_preservecase(snum);