1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

param: Rename variable used for lp_dos_filetimes bDosFiletimes

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Andrew Bartlett 2013-12-24 16:03:33 +13:00 committed by Jeremy Allison
parent 27d1aeaf92
commit ef4d152907
3 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ FN_LOCAL_BOOL(delete_readonly, delete_readonly)
FN_LOCAL_BOOL(fake_oplocks, fake_oplocks)
FN_LOCAL_BOOL(recursive_veto_delete, recursive_veto_delete)
FN_LOCAL_BOOL(dos_filemode, dos_filemode)
FN_LOCAL_BOOL(dos_filetimes, bDosFiletimes)
FN_LOCAL_BOOL(dos_filetimes, dos_filetimes)
FN_LOCAL_BOOL(dos_filetime_resolution, bDosFiletimeResolution)
FN_LOCAL_BOOL(fake_dir_create_times, bFakeDirCreateTimes)
FN_LOCAL_BOOL(blocking_locks, bBlockingLocks)

View File

@ -3796,7 +3796,7 @@ static struct parm_struct parm_table[] = {
.label = "dos filetimes",
.type = P_BOOL,
.p_class = P_LOCAL,
.offset = LOCAL_VAR(bDosFiletimes),
.offset = LOCAL_VAR(dos_filetimes),
.special = NULL,
.enum_list = NULL,
.flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,

View File

@ -243,7 +243,7 @@ static struct loadparm_service sDefault =
.fake_oplocks = false,
.recursive_veto_delete = false,
.dos_filemode = false,
.bDosFiletimes = true,
.dos_filetimes = true,
.bDosFiletimeResolution = false,
.bFakeDirCreateTimes = false,
.bBlockingLocks = true,