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

svn path=/dists/sid/linux-2.6/; revision=15518
This commit is contained in:
Ben Hutchings 2010-04-17 15:30:25 +00:00
parent ec3ca76417
commit 7e7e2414d7
2 changed files with 3 additions and 1 deletions

1
debian/changelog vendored
View File

@ -16,6 +16,7 @@ linux-2.6 (2.6.32-12) UNRELEASED; urgency=low
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

View File

@ -884,7 +884,8 @@ sub cryptsetup_update {
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);
}