diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-12-24 16:04:22 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-01-24 16:19:00 -0800 |
commit | ed8ac480a9746aba1da5b6ce7e76b927805e75ca (patch) | |
tree | 8beb2d3d7f3aa264a13058ab82cadaeb7df69020 | |
parent | febd26ec315970d7fd814887b2dc2a20dfd2d78c (diff) | |
download | samba-ed8ac480a9746aba1da5b6ce7e76b927805e75ca.tar.gz samba-ed8ac480a9746aba1da5b6ce7e76b927805e75ca.tar.xz samba-ed8ac480a9746aba1da5b6ce7e76b927805e75ca.zip |
param: Rename variable used for lp_dns_update_command szDNSUpdateCommand
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 5b6ab60c02..f7ce63d0f4 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -349,7 +349,7 @@ FN_GLOBAL_INTEGER(winbind_reconnect_delay, winbind_reconnect_delay) FN_GLOBAL_LIST(auth_methods, auth_methods) FN_GLOBAL_LIST(cluster_addresses, cluster_addresses) FN_GLOBAL_LIST(dcerpc_endpoint_servers, dcerpc_endpoint_servers) -FN_GLOBAL_LIST(dns_update_command, szDNSUpdateCommand) +FN_GLOBAL_LIST(dns_update_command, dns_update_command) FN_GLOBAL_LIST(eventlog_list, szEventLogs) FN_GLOBAL_LIST(init_logon_delayed_hosts, szinit_logon_delayedHosts) FN_GLOBAL_LIST(interfaces, szInterfaces) diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 583f277f62..1f9f837bb6 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -4231,7 +4231,7 @@ static struct parm_struct parm_table[] = { .label = "dns update command", .type = P_CMDLIST, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(szDNSUpdateCommand), + .offset = GLOBAL_VAR(dns_update_command), .special = NULL, .enum_list = NULL, .flags = FLAG_ADVANCED, |