]> git.saurik.com Git - apt.git/commitdiff
* Fix error message to output versions in the order in ...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:03:15 +0000 (17:03 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:03:15 +0000 (17:03 +0000)
Author: mdz
Date: 2003-08-18 15:55:19 GMT
* Fix error message to output versions in the order in which they were
compared when the reverse comparison fails

debian/changelog
test/versiontest.cc

index 9cea95190d2ff4af0f2384c42b2efb91791aa69b..57596ad49034f7405f50297f1d420488f6bb9466 100644 (file)
@@ -7,6 +7,8 @@ apt (0.5.10) unstable; urgency=low
   * Get self-tests compiling again, updated for latest library API
     and g++ 3.3
   * Add version comparison tests for #194327 and #205960
+  * Fix error message to output versions in the order in which they were
+    compared when the reverse comparison fails
 
  -- 
 
index 7ce32e20b7ef7ed96cc70354be92ccfc506c6bba..5438eb4de035e1ad9883bf87a3d29bc25c14b816 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: versiontest.cc,v 1.4 2003/08/18 15:32:38 mdz Exp $
+// $Id: versiontest.cc,v 1.5 2003/08/18 15:55:19 mdz Exp $
 /* ######################################################################
 
    Version Test - Simple program to run through a file and comare versions.
@@ -200,7 +200,7 @@ bool RunTest(const char *File)
            Res = 1;
 
       if (Res != Expected)
-        _error->Error("Comparison failed on line %u. '%s' ? '%s' %i != %i",CurLine,A.c_str(),B.c_str(),Res,Expected);
+        _error->Error("Comparison failed on line %u. '%s' ? '%s' %i != %i",CurLine,B.c_str(),A.c_str(),Res,Expected);
    }
 }