]> git.saurik.com Git - apt.git/commitdiff
Version compare glitch
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:51:51 +0000 (16:51 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:51:51 +0000 (16:51 +0000)
Author: jgg
Date: 1998-12-05 01:44:57 GMT
Version compare glitch

apt-pkg/version.cc

index 4e2e61312ebc9d82f4a1aa759d1dda1bb4479965..f3ebb556e0389dae658483e935379bb9ec77e25b 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: version.cc,v 1.7 1998/11/28 20:50:24 jgg Exp $
+// $Id: version.cc,v 1.8 1998/12/05 01:44:57 jgg Exp $
 /* ######################################################################
 
    Version - Version string 
@@ -59,7 +59,6 @@ int pkgVersionCompare(string A,string B)
 static int iVersionCompare(const char *A, const char *AEnd, const char *B,
                           const char *BEnd)
 {
-   // cout << string(A,AEnd) << ',' << string(B,BEnd) << endl;
    if (A >= AEnd && B >= BEnd)
       return 0;
    if (A >= AEnd)
@@ -182,9 +181,9 @@ int pkgVersionCompare(const char *A, const char *AEnd, const char *B,
    for (;dlhs > lhs && *dlhs != '-'; dlhs--);
    for (;drhs > rhs && *drhs != '-'; drhs--);
 
-   if (dlhs == A)
+   if (dlhs == lhs)
       dlhs = AEnd;
-   if (drhs == B)
+   if (drhs == rhs)
       drhs = BEnd;
    
    // Compare the main version