diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-09 18:33:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:32 -0500 |
commit | 257d2e0d2a6cd4c2ea62399ec97ada46dd8c395c (patch) | |
tree | 0f8a053523bcc4ac424b020ed0fd58614e4350a0 /source3/include | |
parent | 10820162f1cfbfd77fae84327c21d81ff8a6881c (diff) | |
download | samba-257d2e0d2a6cd4c2ea62399ec97ada46dd8c395c.tar.gz samba-257d2e0d2a6cd4c2ea62399ec97ada46dd8c395c.tar.bz2 samba-257d2e0d2a6cd4c2ea62399ec97ada46dd8c395c.zip |
r21777: As Stevef requested and the Apple guys agreed, make
mode_t in posix_open/posix_mkdir -> 8 bytes to match
the SET_UNIX_INFO_BASIC call. Steve is updating the
Wikki.
Jeremy.
(This used to be commit 2f1c95ac7718c1d2a75367ba712edd6b57069432)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/trans2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/trans2.h b/source3/include/trans2.h index 8d372dcde3..be635462e1 100644 --- a/source3/include/trans2.h +++ b/source3/include/trans2.h @@ -717,8 +717,8 @@ enum smb_whoami_flags { /* Definition of request data block for SMB_POSIX_PATH_OPEN */ /* [4 bytes] flags (as smb_ntcreate_Flags). - [4 bytes] open_mode - [4 bytes] mode_t - same encoding as "Standard UNIX permissions" above. + [4 bytes] open_mode - SMB_O_xxx flags above. + [8 bytes] mode_t (permissions) - same encoding as "Standard UNIX permissions" above in SMB_SET_FILE_UNIX_BASIC. [2 bytes] ret_info_level - optimization. Info level to be returned. */ |