Author: djpig
Date: 2005-08-04 12:48:13 +0200 (Thu, 04 Aug 2005)
New Revision: 463

Modified:
   trunk/checks/binaries
   trunk/debian/changelog
Log:
Convert the SONAME to lower case before comparing with
package name. Suggested by Josh Triplett (Closes: #321206)


Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries       2005-08-03 13:34:24 UTC (rev 462)
+++ trunk/checks/binaries       2005-08-04 10:48:13 UTC (rev 463)
@@ -121,7 +121,7 @@
     $expected_name =~ s/([0-9])\.so\./$1-/;
     $expected_name =~ s/\.so\.//;
 
-    if ($expected_name eq $pkg) {
+    if (lc($expected_name) eq $pkg) {
        $match_found = 1;
        last;
     }

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2005-08-03 13:34:24 UTC (rev 462)
+++ trunk/debian/changelog      2005-08-04 10:48:13 UTC (rev 463)
@@ -1,3 +1,11 @@
+lintian (1.23.12) UNRELEASED; urgency=low
+
+  * checks/binaries:
+    + [FL] Convert the SONAME to lower case before comparing with
+      package name. Suggested by Josh Triplett (Closes: #321206)
+
+ -- Frank Lichtenheld <[EMAIL PROTECTED]>  Thu,  4 Aug 2005 12:45:33 +0200
+
 lintian (1.23.11) unstable; urgency=low
 
   * frontend/lintian:


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to