diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-01-10 15:06:41 +1300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-02-10 15:26:44 +1300 |
commit | 98e8126b05f69646cfb035e3ebea71b3172c01e9 (patch) | |
tree | 968debbc74f87f8e6377e50588a22247151f15cd /lib/param/param_table.c | |
parent | a416edfe3ada6b0541ae3450bcb1916ca5429d43 (diff) | |
download | samba-98e8126b05f69646cfb035e3ebea71b3172c01e9.tar.gz samba-98e8126b05f69646cfb035e3ebea71b3172c01e9.tar.xz samba-98e8126b05f69646cfb035e3ebea71b3172c01e9.zip |
param: rename and move log level from LOADPARM_EXTRA_GLOBALS to param_functions.c
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Kamen Mazdrashki <kamenim@samba.org>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 30222a9623..09e041bbea 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1139,7 +1139,7 @@ static struct parm_struct parm_table[] = { .label = "log level", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(loglevel), + .offset = GLOBAL_VAR(log_level), .special = handle_debug_list, .enum_list = NULL, .flags = FLAG_ADVANCED, @@ -1148,7 +1148,7 @@ static struct parm_struct parm_table[] = { .label = "debuglevel", .type = P_STRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(loglevel), + .offset = GLOBAL_VAR(log_level), .special = handle_debug_list, .enum_list = NULL, .flags = FLAG_HIDE, |