summaryrefslogtreecommitdiff
path: root/source4/torture/local/util_strlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/torture/local/util_strlist.c')
-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;