From: Wayne Davison Date: Sun, 13 Feb 2005 20:06:18 +0000 (+0000) Subject: Improved the call to f_name_cmp(). X-Git-Tag: v2.6.4pre1~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=122d1771db5a4c771de2fd258e0829909f77e5cc;p=thirdparty%2Frsync.git Improved the call to f_name_cmp(). --- diff --git a/hlink.c b/hlink.c index 502d8551..84bca502 100644 --- a/hlink.c +++ b/hlink.c @@ -36,7 +36,7 @@ static int hlink_compare(struct file_struct **file1, struct file_struct **file2) if (f1->F_INODE != f2->F_INODE) return (int) (f1->F_INODE > f2->F_INODE ? 1 : -1); - return f_name_cmp(*file1, *file2); + return f_name_cmp(f1, f2); } static struct file_struct **hlink_list;