search for: do_ftruncate

Displaying 1 result from an estimated 1 matches for "do_ftruncate".

Did you mean: dftruncate
2012 Apr 04
0
bug in rsync write-devices patch
...f changes from receiver.c line 369: Original code (after applying write-devices patch): #ifdef HAVE_TRUNCATE If((inplace #ifdef PREALLOCATE_NEEDS_TRUNCATE || preallocated_len > offset #endif ) && fd != -1 && !IS_DEVICE(file->mode) && do_ftruncate(fd, offset) < 0) { Code after change: #ifdef HAVE_TRUNCATE { STRUCT_STAT st; Do_fstat(fd, &st); If((inplace #ifdef PREALLOCATE_NEEDS_TRUNCATE || preallocated_len > offset #endif ) && fd != -1 && !IS_DEVIC...