diff options
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 4 |
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) |