From 3aaaf459ee4409ed05837147fb338a4f6085c12b Mon Sep 17 00:00:00 2001 From: szaka Date: Thu, 22 Jan 2009 12:13:49 +0000 Subject: [PATCH] revert 'change: support the "user." extended attributes namespace ...' change --- src/ntfs-3g.8.in | 2 +- src/ntfs-3g.c | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/ntfs-3g.8.in b/src/ntfs-3g.8.in index c398a0c1..b6a49fe0 100644 --- a/src/ntfs-3g.8.in +++ b/src/ntfs-3g.8.in @@ -167,7 +167,7 @@ to, one of \fBnone\fR, \fBwindows\fR or \fBxattr\fR. If the option is set to to \fBwindows\fR, then the user can access them just like in Windows (eg. cat file:stream). If it's set to \fBxattr\fR, then the named data streams are mapped to xattrs and user can manipulate them using \fB{get,set}fattr\fR -utilities. The default is \fBxattr\fR. +utilities. The default is \fBnone\fR. .TP .B debug Makes ntfs-3g to not detach from terminal and print a lot of debug output from diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index f5586508..a7b2e579 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -1678,11 +1678,7 @@ static int ntfs_fuse_init(void) *ctx = (ntfs_fuse_context_t) { .uid = getuid(), .gid = getgid(), -#if defined(linux) - .streams = NF_STREAMS_INTERFACE_XATTR, -#else - .streams = NF_STREAMS_INTERFACE_NONE, -#endif + .streams = NF_STREAMS_INTERFACE_NONE, }; return 0; }