From: Wayne Davison Date: Fri, 16 Jul 2004 17:02:12 +0000 (+0000) Subject: Fixed the return type on the new links_depth() function. X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/commitdiff_plain/1189721b7b4ebe6bfc3593dac92b88baf2fb39d3 Fixed the return type on the new links_depth() function. --- diff --git a/links-depth.diff b/links-depth.diff index f665bcf..1b012de 100644 --- a/links-depth.diff +++ b/links-depth.diff @@ -7,7 +7,7 @@ handle relative symlinks properly, and that has not yet been fixed in this modified version. --- orig/flist.c 2004-07-15 02:21:10 -+++ flist.c 2004-07-16 16:38:35 ++++ flist.c 2004-07-16 16:58:04 @@ -49,6 +49,7 @@ extern int filesfrom_fd; extern int one_file_system; extern int keep_dirlinks; @@ -21,7 +21,7 @@ in this modified version. +#if SUPPORT_LINKS -+void links_depth(char *linkname, STRUCT_STAT *st_ptr) ++static int links_depth(char *linkname, STRUCT_STAT *st_ptr) +{ + char buf[MAXPATHLEN]; + STRUCT_STAT st;