From 35d6068f2504cc76728c3187c3e16171112dabca Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 13 Apr 2008 16:32:05 +0200 Subject: 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) --- source3/utils/net_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/utils/net_conf.c') 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)); -- cgit