From 520800b61de36ffe27723d7d9ecae748faa314f4 Mon Sep 17 00:00:00 2001 From: jbj Date: Thu, 4 Jan 2001 00:53:41 +0000 Subject: [PATCH] Duh, conversion to lower is " ... | 0.20". CVS patchset: 4409 CVS date: 2001/01/04 00:53:41 --- rpmio/strcasecmp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.7.4