From d0f821ad3d2627b842cf18770f91266a808b83b8 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 18 Feb 2002 22:49:00 +0000 Subject: [PATCH] Must use STRUCT_STAT not "struct stat" to be compatible with other rsync functions. --- tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.34.1