summaryrefslogtreecommitdiff
path: root/source4/torture
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-26 18:16:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:59 -0500
commit01319b8462aa8ebf3b5be4598e7317aa08f40350 (patch)
tree8cbd411e39a0dedabdf12d942da4e014c2b0dab4 /source4/torture
parentbb9c9ec69c58c9707381e37a7d984e1fab32548f (diff)
downloadsamba-01319b8462aa8ebf3b5be4598e7317aa08f40350.tar.gz
samba-01319b8462aa8ebf3b5be4598e7317aa08f40350.tar.bz2
samba-01319b8462aa8ebf3b5be4598e7317aa08f40350.zip
r10516: Add seperator argument to str_list_{make,join}_shell()
(This used to be commit 0a5c9197f28e5451406d422e0a8ff84c1b20faae)
Diffstat (limited to 'source4/torture')
-rw-r--r--source4/torture/local/util_strlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/local/util_strlist.c b/source4/torture/local/util_strlist.c
index 8c8d8dfcdb..eb1de2b7c1 100644
--- a/source4/torture/local/util_strlist.c
+++ b/source4/torture/local/util_strlist.c
@@ -38,9 +38,9 @@ static BOOL test_lists_shell(TALLOC_CTX *mem_ctx)
const char **ret1, **ret2, *tmp;
BOOL match = True;
- ret1 = str_list_make_shell(mem_ctx, test_lists_shell_strings[i]);
- tmp = str_list_join_shell(mem_ctx, ret1);
- ret2 = str_list_make_shell(mem_ctx, tmp);
+ ret1 = str_list_make_shell(mem_ctx, test_lists_shell_strings[i], " ");
+ tmp = str_list_join_shell(mem_ctx, ret1, ' ');
+ ret2 = str_list_make_shell(mem_ctx, tmp, " ");
if ((ret1 == NULL || ret2 == NULL) && ret2 != ret1) {
match = False;