write_pos(): Fix return value for attribute writes

This commit is contained in:
Ingo Weinhold
2011-07-17 16:54:18 +02:00
parent 55a34b69f3
commit 52e079692f
+1 -1
View File
@@ -979,7 +979,7 @@ write_pos(int fd, off_t pos, const void *buffer, size_t bufferSize)
return -1; return -1;
} }
return 0; return bufferSize;
} }
// seek // seek