summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/urpm.pm b/urpm.pm
index b21a5b43..1f694bd4 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -249,8 +249,7 @@ sub get_updates_description {
/^Updated: (.+)/ && $section eq 'pkg' and $cur->{updated} = $1;
/^Importance: (.+)/ && $section eq 'pkg' and $cur->{importance} = $1;
/^%(pre|description)/ and do { $section = $1; next };
- $section eq 'pre' and $cur->{pre} .= $_;
- $section eq 'description' and $cur->{description} .= $_;
+ $section =~ /^(pre|description)\z/ and $cur->{$1} .= $_;
}
}
\%update_descr;