From: jbj Date: Thu, 4 Jan 2001 00:53:41 +0000 (+0000) Subject: Duh, conversion to lower is " ... | 0.20". X-Git-Tag: tznext/4.11.0.1.tizen20130304~7959 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=520800b61de36ffe27723d7d9ecae748faa314f4;p=tools%2Flibrpm-tizen.git Duh, conversion to lower is " ... | 0.20". CVS patchset: 4409 CVS date: 2001/01/04 00:53:41 --- diff --git a/rpmio/strcasecmp.c b/rpmio/strcasecmp.c index fa87ea9..4fcb37d 100644 --- a/rpmio/strcasecmp.c +++ b/rpmio/strcasecmp.c @@ -3,11 +3,12 @@ */ #include "system.h" +#include "rpmio.h" #include "debug.h" static inline unsigned char xtolower(unsigned char c) { - return ((c >= 'A' && c <= 'Z') ? (c | 0x40) : c); + return ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c); } int xstrcasecmp(const char *s1, const char *s2)