diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:11 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:16 -0800 |
commit | 73bac10cae03494bc046e1cd3b7cb9ce82121480 (patch) | |
tree | 2649380fcf689c2f9e82ff8f11e4d23a2d5a9da4 /lib/param/param_table.c | |
parent | ad4048bb0a4dcf87c4e15f22539acebfc61b2e06 (diff) | |
download | samba-73bac10cae03494bc046e1cd3b7cb9ce82121480.tar.gz samba-73bac10cae03494bc046e1cd3b7cb9ce82121480.tar.xz samba-73bac10cae03494bc046e1cd3b7cb9ce82121480.zip |
param: rename lp function and variable from "rootdir" to "root_directory"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 746d8e4ad8..d5ef200e4c 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -556,7 +556,7 @@ static struct parm_struct parm_table[] = { .label = "root directory", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(rootdir), + .offset = GLOBAL_VAR(root_directory), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, @@ -565,7 +565,7 @@ static struct parm_struct parm_table[] = { .label = "root dir", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(rootdir), + .offset = GLOBAL_VAR(root_directory), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, @@ -574,7 +574,7 @@ static struct parm_struct parm_table[] = { .label = "root", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(rootdir), + .offset = GLOBAL_VAR(root_directory), .special = NULL, .enum_list = NULL, .flags = FLAG_HIDE, |