From: Sapan Bhatia Date: Thu, 19 Jun 2008 19:28:31 +0000 (+0000) Subject: Vsys scripts should be allowed to contain '-'. X-Git-Tag: vsys-0.7-13~2 X-Git-Url: http://git.onelab.eu/?p=vsys.git;a=commitdiff_plain;h=75e0fea14235449400f9f1501c03199d54cb8590 Vsys scripts should be allowed to contain '-'. --- diff --git a/backend.ml b/backend.ml index 6743f8c..2f964ef 100644 --- a/backend.ml +++ b/backend.ml @@ -46,7 +46,7 @@ class backendHandler dir_root (frontend_lst: frontendHandler list) = (** Regular expression that defines a legal script name. Filter out * temporary files using this *) - val file_regexp = Str.regexp "^[a-zA-Z][a-zA-Z0-9_\.]*$" + val file_regexp = Str.regexp "^[a-zA-Z][a-zA-Z0-9_\.\-]*$" val acl_file_regexp = Str.regexp ".*acl$" val dir_regexp = Str.regexp "^dir_";