From 5d268c9a1753aafd950c8831e29293d7613c39a1 Mon Sep 17 00:00:00 2001 From: szaka Date: Sun, 4 Nov 2007 11:27:29 +0000 Subject: [PATCH] ntfs_fuse_getxattr_windows(): separate stream names by '\0' (Daniel Borca) --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 1a9d268b..a442f682 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1372,7 +1372,7 @@ static int ntfs_fuse_getxattr_windows(const char *path, const char *name, if ((size_t)ret <= size) { /* Don't add space to the beginning of line. */ if (to != value) { - *to = ' '; + *to = '\0'; to++; } strncpy(to, tmp_name, tmp_name_len);