summaryrefslogtreecommitdiff
path: root/rpmio
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-01-04 00:53:41 +0000
committerjbj <devnull@localhost>2001-01-04 00:53:41 +0000
commit520800b61de36ffe27723d7d9ecae748faa314f4 (patch)
tree50f058909e972add97279616a0455d3e92e8611a /rpmio
parente8d41399496f62196613412687c3e14442222ee7 (diff)
downloadlibrpm-tizen-520800b61de36ffe27723d7d9ecae748faa314f4.tar.gz
librpm-tizen-520800b61de36ffe27723d7d9ecae748faa314f4.tar.bz2
librpm-tizen-520800b61de36ffe27723d7d9ecae748faa314f4.zip
Duh, conversion to lower is " ... | 0.20".
CVS patchset: 4409 CVS date: 2001/01/04 00:53:41
Diffstat (limited to 'rpmio')
-rw-r--r--rpmio/strcasecmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/rpmio/strcasecmp.c b/rpmio/strcasecmp.c
index fa87ea9c7..4fcb37d60 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)