summaryrefslogtreecommitdiff
path: root/lib/poptALL.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2008-03-18 09:10:13 +0200
committerPanu Matilainen <pmatilai@redhat.com>2008-03-18 09:10:13 +0200
commitc908277be21c27a0894404821605134958521fd6 (patch)
treecf247a2a6753c527a7985aeeeb4b0dee3b4626b8 /lib/poptALL.c
parent9df54a8622b6640e54288835e62c6c0d0b23c748 (diff)
downloadlibrpm-tizen-c908277be21c27a0894404821605134958521fd6.tar.gz
librpm-tizen-c908277be21c27a0894404821605134958521fd6.tar.bz2
librpm-tizen-c908277be21c27a0894404821605134958521fd6.zip
Minimal namespacing for locale-insensitive x*() string functions
Diffstat (limited to 'lib/poptALL.c')
-rw-r--r--lib/poptALL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/poptALL.c b/lib/poptALL.c
index 18b91ad1f..14cfd84af 100644
--- a/lib/poptALL.c
+++ b/lib/poptALL.c
@@ -120,7 +120,7 @@ static void rpmcliAllArgCallback( poptContext con,
{ char *s, *t;
/* XXX Convert '-' in macro name to underscore, skip leading %. */
s = t = xstrdup(arg);
- while (*t && !xisspace(*t)) {
+ while (*t && !risspace(*t)) {
if (*t == '-') *t = '_';
t++;
}