diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 10:48:57 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:38 +0200 |
commit | 5306c18f2cf03973b60e544f0750d28eb0b8ef3f (patch) | |
tree | 522b8669e55ee6a7e76526ce7429cbe4741d63e1 /source3/smbd | |
parent | 4a22dd61c08d0130342012c6ac60eb151f601f3a (diff) | |
download | samba-5306c18f2cf03973b60e544f0750d28eb0b8ef3f.tar.gz samba-5306c18f2cf03973b60e544f0750d28eb0b8ef3f.tar.bz2 samba-5306c18f2cf03973b60e544f0750d28eb0b8ef3f.zip |
s3:smbd: move UCF_ defines to smbd.h
metze
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/smbd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/smbd/smbd.h b/source3/smbd/smbd.h index df88e91a23..df92455e04 100644 --- a/source3/smbd/smbd.h +++ b/source3/smbd/smbd.h @@ -65,4 +65,13 @@ struct trans_state { char *data; }; +/* + * unix_convert_flags + */ +#define UCF_SAVE_LCOMP 0x00000001 +#define UCF_ALWAYS_ALLOW_WCARD_LCOMP 0x00000002 +#define UCF_COND_ALLOW_WCARD_LCOMP 0x00000004 +#define UCF_POSIX_PATHNAMES 0x00000008 +#define UCF_UNIX_NAME_LOOKUP 0x00000010 + #endif /* _SMBD_SMBD_H */ |