streams_xattr always appends a '\0'. We'll start to add meaning to
that byte and check it soon, so make the hand-crafted stream follow
that convention.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
ret = torture_setup_local_xattr(tctx, "localdir", BASEDIR "/stream_names.txt",
"user.DosStream.bar:baz:$DATA",
- "data", strlen("data"));
+ "data", strlen("data")+1);
CHECK_VALUE(ret, true);
ret = check_stream_list(tree, tctx, fname, 3, streams, false);