Ignore:
Timestamp:
Mar 12, 2008, 9:08:18 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.28a

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  
    445445        START_PROFILE(syscall_rename);
    446446        result = rename(oldname, newname);
    447         if (errno == EXDEV) {
     447        if ((result == -1) && (errno == EXDEV)) {
    448448                /* Rename across filesystems needed. */
    449449                result = copy_reg(oldname, newname);
  • branches/samba-3.0/source/modules/vfs_hpuxacl.c

    r39 r124  
    142142        SMB_ACL_T result = NULL;
    143143        int count;
    144         HPUX_ACL_T hpux_acl;
     144        HPUX_ACL_T hpux_acl = NULL;
    145145       
    146146        DEBUG(10, ("hpuxacl_sys_acl_get_file called for file '%s'.\n",
     
    216216        int ret = -1;
    217217        SMB_STRUCT_STAT s;
    218         HPUX_ACL_T hpux_acl;
     218        HPUX_ACL_T hpux_acl = NULL;
    219219        int count;
    220220       
  • branches/samba-3.0/source/modules/vfs_notify_fam.c

    r1 r124  
    157157
    158158        switch (fam_event.code) {
     159        case FAMChanged:
     160                ne.action = NOTIFY_ACTION_MODIFIED;
     161                break;
    159162        case FAMCreated:
    160163                ne.action = NOTIFY_ACTION_ADDED;
Note: See TracChangeset for help on using the changeset viewer.