diff options
author | Michael Adam <obnox@samba.org> | 2008-04-13 16:32:05 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-13 20:04:43 +0200 |
commit | 35d6068f2504cc76728c3187c3e16171112dabca (patch) | |
tree | 3df8467b595f947f2ed3f71b584486ac0a3a78e3 /source3/utils | |
parent | 611b6bfa3b46fec656d68705fb8e88e31409f46a (diff) | |
download | samba-35d6068f2504cc76728c3187c3e16171112dabca.tar.gz samba-35d6068f2504cc76728c3187c3e16171112dabca.tar.bz2 samba-35d6068f2504cc76728c3187c3e16171112dabca.zip |
libsmbconf: remove the bool verbatim parameter from txt backend init function.
Always be verbatim for now. Backend config options may be added later
via some private data pointer.
Michael
(This used to be commit e8bafcfbf4a7ab1dc1ce4f2acd24b0eb74933256)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 7221f3bd68..245a91fa3e 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -291,7 +291,7 @@ static int net_conf_import(struct smbconf_ctx *conf_ctx, DEBUG(3,("net_conf_import: reading configuration from file %s.\n", filename)); - werr = smbconf_init_txt_simple(mem_ctx, &txt_ctx, filename, true); + werr = smbconf_init_txt_simple(mem_ctx, &txt_ctx, filename); if (!W_ERROR_IS_OK(werr)) { d_printf("error loading file '%s': %s\n", filename, dos_errstr(werr)); |