diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:01:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:01:59 +0200 |
commit | 85d0ae7b434a3ae9f3bd50ad7fee1fcd23b26a26 (patch) | |
tree | 48bf27e7d1519791f32cb30c48eda5644594de39 /interface-definitions/vpn_l2tp.xml.in | |
parent | dd4c60c1c3423f02457bc1dcc25e36d03d537a5f (diff) | |
download | vyos-1x-85d0ae7b434a3ae9f3bd50ad7fee1fcd23b26a26.tar.gz vyos-1x-85d0ae7b434a3ae9f3bd50ad7fee1fcd23b26a26.zip |
xml: T3488: when using regex one must use ^ and $ when checking string literals
Diffstat (limited to 'interface-definitions/vpn_l2tp.xml.in')
-rw-r--r-- | interface-definitions/vpn_l2tp.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-definitions/vpn_l2tp.xml.in b/interface-definitions/vpn_l2tp.xml.in index 2d8a8503d..5bdebcb05 100644 --- a/interface-definitions/vpn_l2tp.xml.in +++ b/interface-definitions/vpn_l2tp.xml.in @@ -63,7 +63,7 @@ <description>Use X.509 certificate for IPsec authentication</description> </valueHelp> <constraint> - <regex>(pre-shared-secret|x509)</regex> + <regex>^(pre-shared-secret|x509)$</regex> </constraint> <completionHelp> <list>pre-shared-secret x509</list> @@ -201,7 +201,7 @@ <description>Require the peer to authenticate itself using MS-CHAPv2 [Microsoft Challenge Handshake Authentication Protocol, Version 2].</description> </valueHelp> <constraint> - <regex>(pap|chap|mschap|mschap-v2)</regex> + <regex>^(pap|chap|mschap|mschap-v2)$</regex> </constraint> <completionHelp> <list>pap chap mschap mschap-v2</list> |