From 5d5ddef1c735fd71f65442e3dbc4390cf275914e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Dec 2013 16:03:34 +1300 Subject: [PATCH] param: Rename variable used for lp_fake_dir_create_times bFakeDirCreateTimes Signed-off-by: Andrew Bartlett Signed-off-by: Garming Sam Reviewed-by: Jeremy Allison --- lib/param/param_functions.c | 2 +- lib/param/param_table.c | 2 +- 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 49e7c9e3275..256634ef377 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -114,7 +114,7 @@ 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, dos_filetime_resolution) -FN_LOCAL_BOOL(fake_dir_create_times, bFakeDirCreateTimes) +FN_LOCAL_BOOL(fake_dir_create_times, fake_dir_create_times) FN_LOCAL_BOOL(blocking_locks, bBlockingLocks) FN_LOCAL_BOOL(inherit_perms, bInheritPerms) FN_LOCAL_BOOL(inherit_acls, bInheritACLS) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index d99bf5aade9..55678b72063 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -3814,7 +3814,7 @@ static struct parm_struct parm_table[] = { .label = "fake directory create times", .type = P_BOOL, .p_class = P_LOCAL, - .offset = LOCAL_VAR(bFakeDirCreateTimes), + .offset = LOCAL_VAR(fake_dir_create_times), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED | FLAG_GLOBAL, diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 10a926a1e37..a53df490199 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -245,7 +245,7 @@ static struct loadparm_service sDefault = .dos_filemode = false, .dos_filetimes = true, .dos_filetime_resolution = false, - .bFakeDirCreateTimes = false, + .fake_dir_create_times = false, .bBlockingLocks = true, .bInheritPerms = false, .bInheritACLS = false, -- 2.11.4.GIT