From ea6cccbad961ad158ddfad804d595661da0d3832 Mon Sep 17 00:00:00 2001 From: Salvatore Bonaccorso Date: Sat, 31 Oct 2015 19:12:59 +0100 Subject: [PATCH] Fix typo in image.plain.postinst template Add missing space in warn message causing typo "dangling linkto". Thanks: Jakub Wilk Closes: #803323 --- debian/changelog | 6 ++++++ debian/templates/image.plain.postinst.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4a3ea7904..a96bb7f99 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,13 @@ linux (4.3~rc7-1~exp2) UNRELEASED; urgency=medium + [ Ben Hutchings ] * netfilter: Enable NFT_DUP_IPV4, NFT_DUP_IPV6 as modules (Closes: #803370) + [ Salvatore Bonaccorso ] + * Fix typo in image.plain.postinst template. + Add missing space in warn message causing typo "dangling linkto". + Thanks to Jakub Wilk (Closes: #803323) + -- Ben Hutchings Thu, 29 Oct 2015 21:26:52 +0000 linux (4.3~rc7-1~exp1) experimental; urgency=medium diff --git a/debian/templates/image.plain.postinst.in b/debian/templates/image.plain.postinst.in index 439d4b872..5551895d5 100755 --- a/debian/templates/image.plain.postinst.in +++ b/debian/templates/image.plain.postinst.in @@ -198,7 +198,7 @@ sub move_p { if (!defined($vmlinuz_target) || ! -f "$real_target") { # what, a dangling symlink? - warn "The link " . $image_dest . "$kimage is a dangling link" . + warn "The link " . $image_dest . "$kimage is a dangling link " . "to $real_target\n"; $force_move = 1; return $force_move;