diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-07-18 15:19:15 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-07-19 08:02:32 +0200 |
commit | cf9bd1d9ed6db5d35d92816382edbadc217de792 (patch) | |
tree | 9643306455b8788b6de6cdd94e682b98a91b3c73 /source3/utils | |
parent | 8822b3b6628e82ce85cb20d2bbbe2d0664b9aa8f (diff) | |
download | samba-cf9bd1d9ed6db5d35d92816382edbadc217de792.tar.gz samba-cf9bd1d9ed6db5d35d92816382edbadc217de792.tar.bz2 samba-cf9bd1d9ed6db5d35d92816382edbadc217de792.zip |
s3-param: Make lp_name_resolve_order() return a list
This allows this parameter, one of the few with differing declarations
between the loadparm systems, to be brought into common.
Andrew Bartlett
Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index 43edab24ee..f845147da4 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -153,7 +153,7 @@ static int process_options(int argc, char **argv, int local_flags) fstrcpy(ldap_secret, optarg); break; case 'R': - lp_set_name_resolve_order(optarg); + lp_set_cmdline("name resolve order", optarg); break; case 'D': lp_set_cmdline("log level", optarg); |