Skip to content
Snippets Groups Projects
Commit 63a2b079 authored by Bdale Garbee's avatar Bdale Garbee
Browse files

patch for tarman handling of multi-line descriptions

parent ee7f2ed4
Branches
Tags debian/1.27.1-2
No related merge requests found
......@@ -2,8 +2,10 @@ tar (1.27.1-2) unstable; urgency=low
* patch from David Gilman adds watch file with signature verification,
closes: #742351
* patch from David Gilman fixes problem with multi-line descriptions,
closes: #593149
-- Bdale Garbee <bdale@gag.com> Sat, 22 Mar 2014 13:31:09 -0600
-- Bdale Garbee <bdale@gag.com> Sat, 22 Mar 2014 15:55:03 -0600
tar (1.27.1-1) unstable; urgency=low
......
......@@ -94,6 +94,15 @@ while (<>) {
$$lastoperation{'description'} .= $c3[1];
}
}
if (!$nflag && !/\}/) {
while (<>) {
my @extended_desc = split('"', $_);
$$lastoperation{'description'} .= $extended_desc[1];
if (/\}/) {
last;
}
}
}
}
}
if ($mode == 3 ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment