Changeset 478 for vendor/current/source3/modules
- Timestamp:
- Aug 2, 2010, 6:40:21 PM (15 years ago)
- Location:
- vendor/current/source3/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/modules/vfs_full_audit.c
r414 r478 1095 1095 files_struct *fsp, const SMB_STRUCT_STAT *sbuf) 1096 1096 { 1097 int result;1097 uint64_t result; 1098 1098 1099 1099 result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf); -
vendor/current/source3/modules/vfs_scannedonly.c
r427 r478 54 54 #define SENDBUFFERSIZE 1450 55 55 56 #ifndef SUN_LEN 57 #define SUN_LEN(sunp) ((size_t)((struct sockaddr_un *)0)->sun_path \ 58 + strlen((sunp)->sun_path)) 59 #endif 60 61 56 62 struct Tscannedonly { 57 63 int socket; -
vendor/current/source3/modules/vfs_streams_xattr.c
r414 r478 238 238 sbuf->st_ex_mode &= ~S_IFMT; 239 239 sbuf->st_ex_mode |= S_IFREG; 240 sbuf->st_ex_blocks = sbuf->st_ex_size %STAT_ST_BLOCKSIZE + 1;240 sbuf->st_ex_blocks = sbuf->st_ex_size / STAT_ST_BLOCKSIZE + 1; 241 241 242 242 return 0; … … 291 291 smb_fname->st.st_ex_mode |= S_IFREG; 292 292 smb_fname->st.st_ex_blocks = 293 smb_fname->st.st_ex_size %STAT_ST_BLOCKSIZE + 1;293 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1; 294 294 295 295 result = 0; … … 342 342 smb_fname->st.st_ex_mode |= S_IFREG; 343 343 smb_fname->st.st_ex_blocks = 344 smb_fname->st.st_ex_size %STAT_ST_BLOCKSIZE + 1;344 smb_fname->st.st_ex_size / STAT_ST_BLOCKSIZE + 1; 345 345 346 346 result = 0;
Note:
See TracChangeset
for help on using the changeset viewer.