diff options
author | Christian Breunig <christian@breunig.cc> | 2024-09-26 06:55:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 06:55:31 +0200 |
commit | 9acb96422d3c60834440fec5be20267ae8958b7c (patch) | |
tree | dc04f8687dc64765fe72ffab585ab316ee0a9531 /src/validators/ipv4-range | |
parent | 2ba5089fb2cca7e3e172ec5b4ce6a79cc521312b (diff) | |
parent | 29e21b1b697924ae5d942229304d827d04957549 (diff) | |
download | vyos-1x-9acb96422d3c60834440fec5be20267ae8958b7c.tar.gz vyos-1x-9acb96422d3c60834440fec5be20267ae8958b7c.zip |
Merge pull request #4099 from dmbaturin/T6739-quote-ipaddrcheck-args
validators: T6739: fix ipaddrcheck argument quoting
Diffstat (limited to 'src/validators/ipv4-range')
-rwxr-xr-x | src/validators/ipv4-range | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/validators/ipv4-range b/src/validators/ipv4-range index 6492bfc52..56de64e66 100755 --- a/src/validators/ipv4-range +++ b/src/validators/ipv4-range @@ -18,12 +18,12 @@ if [[ "$1" =~ "-" ]]; then # hyphen as delimiter readarray -d - -t strarr <<< $1 - ipaddrcheck --is-ipv4-single ${strarr[0]} + ipaddrcheck --is-ipv4-single "${strarr[0]}" if [ $? -gt 0 ]; then error_exit $1 fi - ipaddrcheck --is-ipv4-single ${strarr[1]} + ipaddrcheck --is-ipv4-single "${strarr[1]}" if [ $? -gt 0 ]; then error_exit $1 fi |