diff options
author | Michael Adam <obnox@samba.org> | 2008-04-08 14:30:46 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-10 01:28:58 +0200 |
commit | 07d038652cd3d3b463aa5a929907cda27c0c5ef1 (patch) | |
tree | 52a1c333b554404b1d0ba5ee064c654d7d10d202 /source3/lib | |
parent | d399778accf0bef382b657a834f9d2a80d05fe77 (diff) | |
download | samba-07d038652cd3d3b463aa5a929907cda27c0c5ef1.tar.gz samba-07d038652cd3d3b463aa5a929907cda27c0c5ef1.tar.bz2 samba-07d038652cd3d3b463aa5a929907cda27c0c5ef1.zip |
libsmbconf: testsuite: use the get_global_includes in get_includes test.
Michael
(This used to be commit 2a4b71b105616b42e1bbfbf01126cc445a991cc0)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/smbconf/testsuite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/smbconf/testsuite.c b/source3/lib/smbconf/testsuite.c index dd5dc5a9cc..d42a5d49b0 100644 --- a/source3/lib/smbconf/testsuite.c +++ b/source3/lib/smbconf/testsuite.c @@ -29,8 +29,8 @@ static bool test_get_includes(struct smbconf_ctx *ctx) TALLOC_CTX *mem_ctx = talloc_stackframe(); printf("test: get_includes\n"); - werr = smbconf_get_includes(ctx, mem_ctx, GLOBAL_NAME, - &num_includes, &includes); + werr = smbconf_get_global_includes(ctx, mem_ctx, + &num_includes, &includes); if (!W_ERROR_IS_OK(werr)) { printf("failure: get_includes - %s\n", dos_errstr(werr)); goto done; |