Changeset 480 for trunk/server/source3/modules
- Timestamp:
- Aug 2, 2010, 8:16:45 PM (15 years ago)
- Location:
- trunk/server
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 453,478
- Property svn:mergeinfo changed
-
trunk/server/source3/modules/vfs_full_audit.c
r414 r480 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); -
trunk/server/source3/modules/vfs_scannedonly.c
r429 r480 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; -
trunk/server/source3/modules/vfs_streams_xattr.c
r414 r480 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.