From 211947fa963ccbbc05acde31acf2489b96d44f99 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 29 Aug 2012 21:37:46 +0200 Subject: [PATCH] readhash: Fix syntax error in regular expression. --- src/scripts/readhash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/readhash b/src/scripts/readhash index 8c187d51d1..cc063a7a2b 100644 --- a/src/scripts/readhash +++ b/src/scripts/readhash @@ -9,7 +9,7 @@ # shell variables must consist of alphanumeric characters and underscores, # and begin with an alphabetic character or underscore. -VARNAME='[A-Za-z_][A-zA-z0-9_]*' +VARNAME='[A-Za-z_][A-Za-z0-9_]*' # For the assigned value we only accept a limited number of characters - none # of which are shell metachars -- 2.39.5