summaryrefslogtreecommitdiffstats
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-12-24 16:03:30 +1300
committerJeremy Allison <jra@samba.org>2014-01-24 16:18:46 -0800
commit1265e25e7de865c02517b9c744319098e7bec97e (patch)
treeb285862af330f3bfc211e829e15c2038a81c875c /source3
parent56e9e7d9d88bb283267c1f5d99b0273139865acf (diff)
downloadsamba-1265e25e7de865c02517b9c744319098e7bec97e.tar.gz
samba-1265e25e7de865c02517b9c744319098e7bec97e.tar.xz
samba-1265e25e7de865c02517b9c744319098e7bec97e.zip
param: Rename variable used for lp_store_dos_attributes bStoreDosAttributes
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/param/loadparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 8fc91b01ec..f6eec994a0 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -222,7 +222,7 @@ static struct loadparm_service sDefault =
.map_system = false,
.map_hidden = false,
.map_archive = true,
- .bStoreDosAttributes = false,
+ .store_dos_attributes = false,
.bDmapiSupport = false,
.bLocking = true,
.iStrictLocking = Auto,
@@ -5386,7 +5386,7 @@ void set_store_dos_attributes(int snum, bool val)
{
if (!LP_SNUM_OK(snum))
return;
- ServicePtrs[(snum)]->bStoreDosAttributes = val;
+ ServicePtrs[(snum)]->store_dos_attributes = val;
}
void lp_set_mangling_method(const char *new_method)