X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d45898df8028db0ae2112d3c4553860643a1717f..f2ae9e8583d289ed876c3666bd533dba13ffbfb8:/cleanup.c diff --git a/cleanup.c b/cleanup.c index dc8969fa..ca7e3546 100644 --- a/cleanup.c +++ b/cleanup.c @@ -37,12 +37,11 @@ void close_all(void) int max_fd; int fd; int ret; - struct stat st; + STRUCT_STAT st; max_fd = sysconf(_SC_OPEN_MAX) - 1; for (fd = max_fd; fd >= 0; fd--) { - ret = fstat(fd,&st); - if (fstat(fd,&st) == 0) { + if ((ret = do_fstat(fd, &st)) == 0) { if (is_a_socket(fd)) ret = shutdown(fd, 2); ret = close(fd);