[kernel] r15518 - dists/sid/linux-2.6/debian

Ben Hutchings benh at alioth.debian.org
Sat Apr 17 15:30:28 UTC 2010


Author: benh
Date: Sat Apr 17 15:30:25 2010
New Revision: 15518

Log:
linux-base: Fix missing line breaks in updated crypttab (Closes: #577735)

Modified:
   dists/sid/linux-2.6/debian/changelog
   dists/sid/linux-2.6/debian/linux-base.postinst

Modified: dists/sid/linux-2.6/debian/changelog
==============================================================================
--- dists/sid/linux-2.6/debian/changelog	Sat Apr 17 14:46:31 2010	(r15517)
+++ dists/sid/linux-2.6/debian/changelog	Sat Apr 17 15:30:25 2010	(r15518)
@@ -16,6 +16,7 @@
       conversion
     - Use vol_id if available since the version of blkid in lenny does not
       support the output format we need (Closes: #576608)
+    - Fix missing line breaks in updated crypttab (Closes: #577735)
   * i915: Stop trying to use ACPI lid status to determine LVDS connection
     (Closes: #577724)
   * forcedeth: Fix hardware version check for TX bug workaround

Modified: dists/sid/linux-2.6/debian/linux-base.postinst
==============================================================================
--- dists/sid/linux-2.6/debian/linux-base.postinst	Sat Apr 17 14:46:31 2010	(r15517)
+++ dists/sid/linux-2.6/debian/linux-base.postinst	Sat Apr 17 15:30:25 2010	(r15518)
@@ -884,7 +884,8 @@
 	my ($text, $dst, $src, $key, $opts) = cryptsetup_next($old);
 	last unless defined($text);
 	if (defined($src) && defined($map->{$src})) {
-	    $text = "# $text" . join(' ', $dst, $map->{$src}, $key, $opts);
+	    $text = "# $text" .
+		join(' ', $dst, $map->{$src}, $key, $opts) . "\n";
 	}
 	$new->print($text);
     }



More information about the Kernel-svn-changes mailing list