summaryrefslogtreecommitdiff
path: root/lib/sbin/parameter_parser.pl
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-12 15:58:38 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-12 15:58:38 +0000
commit1917d024ed9613508ca4ad6cbbcd729004484ab8 (patch)
treecb1abe61cabfa535c7208db3066de5262164c4dd /lib/sbin/parameter_parser.pl
parenta656734c34ad9a35a092e0cd6fb4831671e65073 (diff)
Fixed a bug from the last commit which caused the parameter options not be
parsed anymore (eg. all parameters were parsed as non-steerable). This closes CactusConnect/911. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2640 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/parameter_parser.pl')
-rw-r--r--lib/sbin/parameter_parser.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/sbin/parameter_parser.pl b/lib/sbin/parameter_parser.pl
index 23ebc124..f300443e 100644
--- a/lib/sbin/parameter_parser.pl
+++ b/lib/sbin/parameter_parser.pl
@@ -151,12 +151,10 @@ sub parse_param_ccl
$use_or_extend = $1;
$type = "\U$2\E";
-
$variable = $3;
$description = $4;
- $description =~ s:^\s*::;
-
$options = $5;
+ $description =~ s:^\s*::;
if($use_or_extend =~ m:USES:i)
{