Author: ryan52-guest Date: 2009-09-04 00:55:10 +0000 (Fri, 04 Sep 2009) New Revision: 1992
Modified: trunk/debian/changelog trunk/scripts/uscan.pl Log: uscan: fix a regression from the security fix when the command is given parameters Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2009-09-02 19:59:39 UTC (rev 1991) +++ trunk/debian/changelog 2009-09-04 00:55:10 UTC (rev 1992) @@ -1,8 +1,9 @@ devscripts (2.10.55) UNRELEASED; urgency=low - * NOT YET RELEASED + * uscan: fix a regression from the security fix when the command is + given parameters - -- Adam D. Barratt <[email protected]> Wed, 02 Sep 2009 20:59:11 +0100 + -- Ryan Niebur <[email protected]> Thu, 03 Sep 2009 17:54:51 -0700 devscripts (2.10.54) unstable; urgency=high Modified: trunk/scripts/uscan.pl =================================================================== --- trunk/scripts/uscan.pl 2009-09-02 19:59:39 UTC (rev 1991) +++ trunk/scripts/uscan.pl 2009-09-04 00:55:10 UTC (rev 1992) @@ -1450,7 +1450,7 @@ # Do whatever the user wishes to do if ($action) { my $usefile = "$destdir/$newfile_base"; - my @cmd = ($action); + my @cmd = split(' ', $action); if ($symlink =~ /^(symlink|rename)$/ and $newfile_base =~ /\.(tar\.gz|tgz)$/) { $usefile = "$destdir/${pkg}_${newversion}.orig.tar.gz"; -- To unsubscribe, send mail to [email protected].
