diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:03:34 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:48 -0800 |
commit | 40d77cc9464d348e0a925ef950d3d997b694e129 (patch) | |
tree | 3b6fff39224d0e5a36f0fd0e1da4081be5a22684 /lib/param | |
parent | ef4d152907f5c0d659370a758e8731f2e5f4a5c8 (diff) | |
download | samba-40d77cc9464d348e0a925ef950d3d997b694e129.tar.gz samba-40d77cc9464d348e0a925ef950d3d997b694e129.tar.xz samba-40d77cc9464d348e0a925ef950d3d997b694e129.zip |
param: Rename variable used for lp_dos_filetime_resolution bDosFiletimeResolution
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 'lib/param')
-rw-r--r-- | lib/param/param_functions.c | 2 | ||||
-rw-r--r-- | lib/param/param_table.c | 2 |
2 files changed, 2 insertions, 2 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, |