diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:04:02 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:18:57 -0800 |
commit | 26e3bc0a5d99f7b84832d4f4dd09c73650a109a0 (patch) | |
tree | cbb6bc7ac02cfb84d2ccb65be3caa41ffb646ec5 | |
parent | d06b706a2a43494b0539c4549373a7f1a6d8353e (diff) | |
download | samba-26e3bc0a5d99f7b84832d4f4dd09c73650a109a0.tar.gz samba-26e3bc0a5d99f7b84832d4f4dd09c73650a109a0.tar.xz samba-26e3bc0a5d99f7b84832d4f4dd09c73650a109a0.zip |
param: Rename variable used for lp_netbios_scope szNetbiosScope
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Jeremy Allison <jra@samba.org>
-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 ba6e5d7bff..7cd7b70684 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -252,7 +252,7 @@ FN_GLOBAL_CONST_STRING(logon_script, logon_script) FN_GLOBAL_CONST_STRING(nbt_client_socket_address, nbt_client_socket_address) FN_GLOBAL_CONST_STRING(ncalrpc_dir, ncalrpc_dir) FN_GLOBAL_CONST_STRING(netbios_name, netbios_name) -FN_GLOBAL_CONST_STRING(netbios_scope, szNetbiosScope) +FN_GLOBAL_CONST_STRING(netbios_scope, netbios_scope) FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, szNTPSignDSocketDirectory) FN_GLOBAL_CONST_STRING(passdb_backend, passdb_backend) FN_GLOBAL_CONST_STRING(passwordserver, szPasswordServer) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 08753cf0c5..f7cdb8bed4 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -364,7 +364,7 @@ static struct parm_struct parm_table[] = { .label = "netbios scope", .type = P_USTRING, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(szNetbiosScope), + .offset = GLOBAL_VAR(netbios_scope), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, |