Skip to content

Commit

Permalink
revert 'change: support the "user." extended attributes namespace ...…
Browse files Browse the repository at this point in the history
…' change
  • Loading branch information
szaka committed Jan 22, 2009
1 parent 3187140 commit 3aaaf45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ntfs-3g.8.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions src/ntfs-3g.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3aaaf45

Please sign in to comment.