diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-25 21:01:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:10 -0500 |
commit | d019557a53b7e624724cd23cce025731c9808f50 (patch) | |
tree | 2ad0da82ffcb5cba60af8364abdb1962f68aa05c /source4 | |
parent | e90061865467600a9d8a34f92e60a296cbf19234 (diff) | |
download | samba-d019557a53b7e624724cd23cce025731c9808f50.tar.gz samba-d019557a53b7e624724cd23cce025731c9808f50.tar.bz2 samba-d019557a53b7e624724cd23cce025731c9808f50.zip |
r3975: added LFN filesystem attribute bit definition from ethereal
apologies for not committing this earlier
(This used to be commit 0950681091ab99f0e79048a9c1db57d057a96e66)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/include/smb.h | 1 | ||||
-rw-r--r-- | source4/torture/basic/properties.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source4/include/smb.h b/source4/include/smb.h index fb30ad1c67..5017384eef 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -618,6 +618,7 @@ enum brl_type {READ_LOCK, WRITE_LOCK, PENDING_READ_LOCK, PENDING_WRITE_LOCK}; #define FS_ATTR_SPARSE_FILES 0x00000040 #define FS_ATTR_REPARSE_POINTS 0x00000080 #define FS_ATTR_REMOTE_STORAGE 0x00000100 +#define FS_ATTR_LFN_SUPPORT 0x00004000 #define FS_ATTR_IS_COMPRESSED 0x00008000 #define FS_ATTR_OBJECT_IDS 0x00010000 #define FS_ATTR_ENCRYPTION 0x00020000 diff --git a/source4/torture/basic/properties.c b/source4/torture/basic/properties.c index bb2e813de8..befdd06602 100644 --- a/source4/torture/basic/properties.c +++ b/source4/torture/basic/properties.c @@ -40,7 +40,7 @@ const static struct bitmapping fs_attr_bits[] = { BIT_NAME(FS_ATTR_SPARSE_FILES), BIT_NAME(FS_ATTR_REPARSE_POINTS), BIT_NAME(FS_ATTR_REMOTE_STORAGE), - /* FIXME! BIT_NAME(FS_ATTR_LFN_SUPPORT),*/ + BIT_NAME(FS_ATTR_LFN_SUPPORT), BIT_NAME(FS_ATTR_IS_COMPRESSED), BIT_NAME(FS_ATTR_OBJECT_IDS), BIT_NAME(FS_ATTR_ENCRYPTION), |