From: Wayne Davison Date: Tue, 20 Sep 2011 19:54:06 +0000 (-0700) Subject: Be sure to use STRUCT_STAT. X-Git-Tag: v3.1.0pre1~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79853c30c0f25a18fe82d93b424b0e8521a90c68;p=thirdparty%2Frsync.git Be sure to use STRUCT_STAT. --- diff --git a/syscall.c b/syscall.c index 6d51d3cb..e2b1394a 100644 --- a/syscall.c +++ b/syscall.c @@ -447,7 +447,7 @@ int do_fallocate(int fd, OFF_T offset, OFF_T length) int do_open_nofollow(const char *pathname, int flags) { #ifndef O_NOFOLLOW - struct stat f_st, l_st; + STRUCT_STAT f_st, l_st; #endif int fd;