Changeset 165 for branches/samba-3.0/source/smbd/reply.c
- Timestamp:
- Mar 11, 2009, 9:14:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/smbd/reply.c
r134 r165 169 169 170 170 *d = '\0'; 171 172 171 return ret; 173 172 } … … 2215 2214 2216 2215 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. */ 2218 2218 if (errno == ENOSYS) { 2219 2219 goto normal_readbraw; … … 4645 4645 DEBUG(3,("rename_internals: succeeded doing rename " 4646 4646 "on %s -> %s\n", directory, newname)); 4647 notify_rename(conn, S_ISDIR(sbuf1.st_mode), 4648 directory, newname); 4647 4649 rename_open_files(conn, lck, sbuf1.st_dev, 4648 4650 sbuf1.st_ino, newname); 4649 4651 TALLOC_FREE(lck); 4650 notify_rename(conn, S_ISDIR(sbuf1.st_mode),4651 directory, newname);4652 4652 return NT_STATUS_OK; 4653 4653 }
Note:
See TracChangeset
for help on using the changeset viewer.