diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-16 11:19:51 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-07-16 11:19:51 +0000 |
commit | 16013c560e189bd0c4fb58e038c0f449542dba7a (patch) | |
tree | b9d2777f2e5a8108b684839f04310ffd0de82179 /src/libunixonacid/openwritevnclose_at.c | |
parent | 538fd727337959b1d7b8449a578a31fd9a9c62b4 (diff) | |
download | skalibs-16013c560e189bd0c4fb58e038c0f449542dba7a.tar.xz |
Add egidingroups sysdeps, change fd_close() to void and saving errno, propagate changes
Diffstat (limited to 'src/libunixonacid/openwritevnclose_at.c')
-rw-r--r-- | src/libunixonacid/openwritevnclose_at.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/libunixonacid/openwritevnclose_at.c b/src/libunixonacid/openwritevnclose_at.c index f5a9419..ba1e789 100644 --- a/src/libunixonacid/openwritevnclose_at.c +++ b/src/libunixonacid/openwritevnclose_at.c @@ -2,7 +2,6 @@ #include <sys/uio.h> #include <unistd.h> -#include <errno.h> #include <skalibs/allreadwrite.h> #include <skalibs/siovec.h> #include <skalibs/djbunix.h> @@ -14,13 +13,7 @@ size_t openwritevnclose_at (int dirfd, char const *file, struct iovec const *v, int fd = open_truncatb(dirfd, file) ; if (fd < 0) return 0 ; r = allwritev(fd, v, n) ; - if (r < siovec_len(v, n) || fsync(fd) < 0) - { - int e = errno ; - fd_close(fd) ; - errno = e ; - return r ; - } + if (r >= siovec_len(v, n)) fsync(fd) ; fd_close(fd) ; return r ; } |