diff options
author | jbj <devnull@localhost> | 2001-01-04 00:53:41 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-01-04 00:53:41 +0000 |
commit | 520800b61de36ffe27723d7d9ecae748faa314f4 (patch) | |
tree | 50f058909e972add97279616a0455d3e92e8611a /rpmio | |
parent | e8d41399496f62196613412687c3e14442222ee7 (diff) | |
download | librpm-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.c | 3 |
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) |