Ignore:
Timestamp:
Mar 11, 2009, 9:14:55 AM (16 years ago)
Author:
Paul Smedley
Message:

Add 'missing' 3.0.34 diffs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/smbd/reply.c

    r134 r165  
    169169
    170170        *d = '\0';
    171 
    172171        return ret;
    173172}
     
    22152214
    22162215                if ( SMB_VFS_SENDFILE( smbd_server_fd(), fsp, fsp->fh->fd, &header, startpos, nread) == -1) {
    2217                         /* Returning ENOSYS means no data at all was sent. Do this as a normal read. */
     2216                        /* Returning ENOSYS means no data at all was sent.
     2217                           Do this as a normal read. */
    22182218                        if (errno == ENOSYS) {
    22192219                                goto normal_readbraw;
     
    46454645                        DEBUG(3,("rename_internals: succeeded doing rename "
    46464646                                 "on %s -> %s\n", directory, newname));
     4647                        notify_rename(conn, S_ISDIR(sbuf1.st_mode),
     4648                                      directory, newname);
    46474649                        rename_open_files(conn, lck, sbuf1.st_dev,
    46484650                                          sbuf1.st_ino, newname);
    46494651                        TALLOC_FREE(lck);
    4650                         notify_rename(conn, S_ISDIR(sbuf1.st_mode),
    4651                                       directory, newname);
    46524652                        return NT_STATUS_OK;   
    46534653                }
Note: See TracChangeset for help on using the changeset viewer.