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/rpmds.c | |
parent | 9df54a8622b6640e54288835e62c6c0d0b23c748 (diff) | |
download | rpm-c908277be21c27a0894404821605134958521fd6.tar.gz |
Minimal namespacing for locale-insensitive x*() string functions
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r-- | lib/rpmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c index 9a03d7bce..403409cf8 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -777,7 +777,7 @@ void parseEVR(char * evr, char *s, *se; s = evr; - while (*s && xisdigit(*s)) s++; /* s points to epoch terminator */ + while (*s && risdigit(*s)) s++; /* s points to epoch terminator */ se = strrchr(s, '-'); /* se points to version terminator */ if (*s == ':') { |