From: Wayne Davison Date: Sat, 19 Jun 2010 16:47:00 +0000 (-0700) Subject: Fix compression-ignoring of upper-case suffixes. X-Git-Tag: v3.0.8pre1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbfde9e50aa8dfab3fc919323e874a02e910701b;p=thirdparty%2Frsync.git Fix compression-ignoring of upper-case suffixes. Fixes bug 7512. --- diff --git a/token.c b/token.c index 3e068a97..843055f7 100644 --- a/token.c +++ b/token.c @@ -192,6 +192,8 @@ void set_compression(const char *fname) return; while (1) { + if (isUpper(<r)) + ltr = toLower(<r); while (node->letter != ltr) { if (node->letter > ltr) return;