X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c88ca682ef8ee2cfea99ce3a50e702166cbe2121..ab94af5c6f93c3b81af95888197f60522e2eb144:/flist.c?ds=sidebyside diff --git a/flist.c b/flist.c index 27025df3..bb6149e7 100644 --- a/flist.c +++ b/flist.c @@ -149,7 +149,8 @@ int readlink_stat(const char *Path, STRUCT_STAT *Buffer, char *Linkbuf) return -1; } if (S_ISLNK(Buffer->st_mode)) { - if (readlink((char *) Path, Linkbuf, MAXPATHLEN-1) == -1) { + int l; + if ((l = readlink((char *) Path, Linkbuf, MAXPATHLEN-1))== -1) { return -1; } Linkbuf[l] = 0;