diff options
author | jbj <devnull@localhost> | 2001-04-29 01:05:43 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-04-29 01:05:43 +0000 |
commit | 3b5820c4205e440d9aad5c5d626721ee30b12292 (patch) | |
tree | b1f0a694903aef1dd937539e1b06c8b0947fb67c /build/parseChangelog.c | |
parent | 6a0524ed57548de92daa4b6cf8ee9d2ab39d7a42 (diff) | |
download | librpm-tizen-3b5820c4205e440d9aad5c5d626721ee30b12292.tar.gz librpm-tizen-3b5820c4205e440d9aad5c5d626721ee30b12292.tar.bz2 librpm-tizen-3b5820c4205e440d9aad5c5d626721ee30b12292.zip |
- globalize _free(3) wrapper in rpmlib.h, consistent usage throughout.
- internalize locale insensitive ctype(3) in rpmio.h
- boring lclint annotations and fiddles.
CVS patchset: 4721
CVS date: 2001/04/29 01:05:43
Diffstat (limited to 'build/parseChangelog.c')
-rw-r--r-- | build/parseChangelog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/parseChangelog.c b/build/parseChangelog.c index 0c81fcd49..19cb19e2c 100644 --- a/build/parseChangelog.c +++ b/build/parseChangelog.c @@ -161,7 +161,7 @@ static int addChangelog(Header h, StringBuf sb) /* name */ name = s; while (*s) s++; - while (s > name && isspace(*s)) { + while (s > name && xisspace(*s)) { *s-- = '\0'; } if (s == name) { @@ -185,7 +185,7 @@ static int addChangelog(Header h, StringBuf sb) s--; /* backup to end of description */ - while ((s > text) && isspace(*s)) { + while ((s > text) && xisspace(*s)) { *s-- = '\0'; } |