mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Fix invalid option case
* Ensure `pihole -q doubleclick.com asd` exits with error
This commit is contained in:
parent
d56beedd7a
commit
54a85d3a63
1 changed files with 1 additions and 1 deletions
2
pihole
2
pihole
|
@ -161,7 +161,7 @@ Options:
|
|||
# If $options contain non ASCII characters, convert to punycode
|
||||
case "${options}" in
|
||||
"" ) str="No domain specified";;
|
||||
*$'\n'* ) str="Unknown query option specified";;
|
||||
*" "* ) str="Unknown query option specified";;
|
||||
*[![:ascii:]]* ) domainQuery=$(idn2 "${options}");;
|
||||
* ) domainQuery="${options}";;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue