From: Martin Pool Date: Mon, 18 Feb 2002 22:49:00 +0000 (+0000) Subject: Must use STRUCT_STAT not "struct stat" to be compatible with other X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/d0f821ad3d2627b842cf18770f91266a808b83b8 Must use STRUCT_STAT not "struct stat" to be compatible with other rsync functions. --- diff --git a/tls.c b/tls.c index 44e290e3..a34385fb 100644 --- a/tls.c +++ b/tls.c @@ -62,7 +62,7 @@ static void failed (char const *what, static void list_file (const char *fname) { - struct stat buf; + STRUCT_STAT buf; char permbuf[PERMSTRING_SIZE]; struct tm *mt; char datebuf[50];