*** empty log message ***

CVS patchset: 2152
CVS date: 1998/06/29 04:42:36
This commit is contained in:
marc 1998-06-29 04:42:36 +00:00
parent 710acda0e4
commit d01943ad8a
2 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,7 @@
- make --justdb install files in normal state
- %{fssizes} segv'd for packages with empty file lists
- updated HP-UX, OSF1, Irix 6.x dependency scripts (Tim Mooney)
- allow whitespace in source/patche lines
2.5 -> 2.5.1:
- fail if sources are not regular files

View File

@ -150,9 +150,11 @@ int addSource(Spec spec, Package pkg, char *field, int tag)
if (tag != RPMTAG_ICON) {
/* We already know that a ':' exists, and that there */
/* are no spaces before it. */
/* This also now allows for spaces and tabs between */
/* the number and the ':' */
nump = buf;
while (*fieldp != ':') {
while ((*fieldp != ':') && (*fieldp != ' ') && (*fieldp != '\t')) {
*nump++ = *fieldp++;
}
*nump = '\0';