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/service-ids-ddos-protection.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/service-ids-ddos-protection.xml.in')
-rw-r--r-- | interface-definitions/service-ids-ddos-protection.xml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface-definitions/service-ids-ddos-protection.xml.in b/interface-definitions/service-ids-ddos-protection.xml.in index 5e65d3106..ff4c1c24e 100644 --- a/interface-definitions/service-ids-ddos-protection.xml.in +++ b/interface-definitions/service-ids-ddos-protection.xml.in @@ -25,7 +25,7 @@ <list>in out</list> </completionHelp> <constraint> - <regex>(in|out)</regex> + <regex>^(in|out)$</regex> </constraint> <multi/> </properties> |