diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-03-18 09:10:13 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-03-18 09:10:13 +0200 |
commit | c908277be21c27a0894404821605134958521fd6 (patch) | |
tree | cf247a2a6753c527a7985aeeeb4b0dee3b4626b8 /lib/poptALL.c | |
parent | 9df54a8622b6640e54288835e62c6c0d0b23c748 (diff) | |
download | librpm-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.c | 2 |
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++; } |