diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-10 10:08:41 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-10 10:08:43 +0100 |
commit | 27dabfab5419cbf00f3b80683f31453db8bed1f9 (patch) | |
tree | eb4e7be345b2f61d15e66b498b6e14469b259fab /interface-definitions/system-proxy.xml.in | |
parent | a68d72122c3cc032b5a7b05dafc0578e64244c4f (diff) | |
download | vyos-1x-27dabfab5419cbf00f3b80683f31453db8bed1f9.tar.gz vyos-1x-27dabfab5419cbf00f3b80683f31453db8bed1f9.zip |
T1843: fix proxy URL handling when running through GCC preprocessor
Newer GCC version (8.3 in Debian Buster) no longer support the -ansi option as
in GCC 4 used in Debian Jessie. Thus the URL which is used as regex for the
proxy must be escaped properly - else the // in the URL is treated as C++
comment.
Diffstat (limited to 'interface-definitions/system-proxy.xml.in')
-rw-r--r-- | interface-definitions/system-proxy.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-definitions/system-proxy.xml.in b/interface-definitions/system-proxy.xml.in index 4b21139a6..540fa97e3 100644 --- a/interface-definitions/system-proxy.xml.in +++ b/interface-definitions/system-proxy.xml.in @@ -11,7 +11,7 @@ <properties> <help>Proxy URL</help> <constraint> - <regex>http://[a-z0-9\.]+$</regex> + <regex>http:\/\/[a-z0-9\.]+$</regex> </constraint> </properties> </leafNode> @@ -27,7 +27,7 @@ <properties> <help>Proxy username</help> <constraint> - <regex>^[a-z0-9-_\.]{1,100}$</regex> + <regex>[a-z0-9-_\.]{1,100}$</regex> </constraint> </properties> </leafNode> |