Fixed installs of serial/version tags

CVS patchset: 1770
CVS date: 1997/07/24 14:41:55
This commit is contained in:
ewt 1997-07-24 14:41:55 +00:00
parent d4e36ffd56
commit 9b02414881
1 changed files with 2 additions and 2 deletions

View File

@ -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);