Duh, conversion to lower is " ... | 0.20".
authorjbj <devnull@localhost>
Thu, 4 Jan 2001 00:53:41 +0000 (00:53 +0000)
committerjbj <devnull@localhost>
Thu, 4 Jan 2001 00:53:41 +0000 (00:53 +0000)
CVS patchset: 4409
CVS date: 2001/01/04 00:53:41

rpmio/strcasecmp.c

index fa87ea9..4fcb37d 100644 (file)
@@ -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)