summaryrefslogtreecommitdiff
path: root/source3/lib/smbconf/testsuite.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-13 16:32:05 +0200
committerMichael Adam <obnox@samba.org>2008-04-13 20:04:43 +0200
commit35d6068f2504cc76728c3187c3e16171112dabca (patch)
tree3df8467b595f947f2ed3f71b584486ac0a3a78e3 /source3/lib/smbconf/testsuite.c
parent611b6bfa3b46fec656d68705fb8e88e31409f46a (diff)
downloadsamba-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/lib/smbconf/testsuite.c')
-rw-r--r--source3/lib/smbconf/testsuite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/smbconf/testsuite.c b/source3/lib/smbconf/testsuite.c
index af24dff715..6f7ce10d9c 100644
--- a/source3/lib/smbconf/testsuite.c
+++ b/source3/lib/smbconf/testsuite.c
@@ -183,7 +183,7 @@ static bool torture_smbconf_txt(void)
printf("test: text backend\n");
printf("test: init\n");
- werr = smbconf_init_txt_simple(mem_ctx, &conf_ctx, NULL, true);
+ werr = smbconf_init_txt_simple(mem_ctx, &conf_ctx, NULL);
if (!W_ERROR_IS_OK(werr)) {
printf("failure: init failed: %s\n", dos_errstr(werr));
ret = false;