Changeset 124 for branches/samba-3.0/source/modules
- Timestamp:
- Mar 12, 2008, 9:08:18 AM (17 years ago)
- Location:
- branches/samba-3.0/source/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/modules/vfs_default.c
r26 r124 445 445 START_PROFILE(syscall_rename); 446 446 result = rename(oldname, newname); 447 if ( errno == EXDEV) {447 if ((result == -1) && (errno == EXDEV)) { 448 448 /* Rename across filesystems needed. */ 449 449 result = copy_reg(oldname, newname); -
branches/samba-3.0/source/modules/vfs_hpuxacl.c
r39 r124 142 142 SMB_ACL_T result = NULL; 143 143 int count; 144 HPUX_ACL_T hpux_acl ;144 HPUX_ACL_T hpux_acl = NULL; 145 145 146 146 DEBUG(10, ("hpuxacl_sys_acl_get_file called for file '%s'.\n", … … 216 216 int ret = -1; 217 217 SMB_STRUCT_STAT s; 218 HPUX_ACL_T hpux_acl ;218 HPUX_ACL_T hpux_acl = NULL; 219 219 int count; 220 220 -
branches/samba-3.0/source/modules/vfs_notify_fam.c
r1 r124 157 157 158 158 switch (fam_event.code) { 159 case FAMChanged: 160 ne.action = NOTIFY_ACTION_MODIFIED; 161 break; 159 162 case FAMCreated: 160 163 ne.action = NOTIFY_ACTION_ADDED;
Note:
See TracChangeset
for help on using the changeset viewer.