Fixed installs of serial/version tags
CVS patchset: 1770 CVS date: 1997/07/24 14:41:55
This commit is contained in:
parent
d4e36ffd56
commit
9b02414881
|
@ -1274,9 +1274,9 @@ int rpmVersionCompare(Header first, Header second) {
|
|||
two = NULL;
|
||||
|
||||
if (one && !two)
|
||||
return -1;
|
||||
else if (!one && two)
|
||||
return 1;
|
||||
else if (!one && two)
|
||||
return -1;
|
||||
else if (one && two)
|
||||
return rpmvercmp(one, two);
|
||||
|
||||
|
|
Loading…
Reference in New Issue