summaryrefslogtreecommitdiff
path: root/lib/sbin/parameter_parser.pl
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-05-27 14:41:02 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-05-27 14:41:02 +0000
commit2d1e88fb1e7867783f195e02c6a9a9c9ab972c8e (patch)
tree5e3dbe95f4b714f26023683ea5dd9201b6a308d5 /lib/sbin/parameter_parser.pl
parent2f4ed1daedb88c468fcdb02b561cf413a06e6f32 (diff)
Do not require double quotes around the default for keyword values.
No other place required double quotes for keyword values. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4065 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/parameter_parser.pl')
-rw-r--r--lib/sbin/parameter_parser.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/parameter_parser.pl b/lib/sbin/parameter_parser.pl
index 76ef9239..6722bbc9 100644
--- a/lib/sbin/parameter_parser.pl
+++ b/lib/sbin/parameter_parser.pl
@@ -429,7 +429,7 @@ sub parse_param_ccl
"$thorn",
'', __LINE__, __FILE__);
}
- elsif ($type =~ m:STRING|KEYWORD: && $default !~ m:".*":)
+ elsif ($type =~ m:STRING: && $default !~ m:".*":)
{
&CST_error(0, "Default given for $type $variable in $thorn " .
"is not a string",