diff options
-rw-r--r-- | lib/param/param_functions.c | 2 | ||||
-rw-r--r-- | lib/param/param_table.c | 2 | ||||
-rw-r--r-- | source3/param/loadparm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 11da68aa0c..49e7c9e327 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -113,7 +113,7 @@ 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, dos_filetimes) -FN_LOCAL_BOOL(dos_filetime_resolution, bDosFiletimeResolution) +FN_LOCAL_BOOL(dos_filetime_resolution, dos_filetime_resolution) FN_LOCAL_BOOL(fake_dir_create_times, bFakeDirCreateTimes) FN_LOCAL_BOOL(blocking_locks, bBlockingLocks) FN_LOCAL_BOOL(inherit_perms, bInheritPerms) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 2a7893a43c..d99bf5aade 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -3805,7 +3805,7 @@ static struct parm_struct parm_table[] = { .label = "dos filetime resolution", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bDosFiletimeResolution), + .offset = LOCAL_VAR(dos_filetime_resolution), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 829e40d4b2..10a926a1e3 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -244,7 +244,7 @@ static struct loadparm_service sDefault = .recursive_veto_delete = false, .dos_filemode = false, .dos_filetimes = true, - .bDosFiletimeResolution = false, + .dos_filetime_resolution = false, .bFakeDirCreateTimes = false, .bBlockingLocks = true, .bInheritPerms = false, |