1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-18 14:18:15 +00:00

travis didn't like that

Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
Adam Warner 2017-12-06 22:57:05 +00:00
parent 162a7b56fe
commit 79aada0b87
No known key found for this signature in database
GPG Key ID: F5410858022DA5EB

View File

@ -507,15 +507,15 @@ testIPv6() {
# will contain 162 which is the decimal value corresponding to 0xa2 # will contain 162 which is the decimal value corresponding to 0xa2
value2=$(( (0x$first)%256 )) value2=$(( (0x$first)%256 ))
# the ULA test is testing for fc00::/7 according to RFC 4193 # the ULA test is testing for fc00::/7 according to RFC 4193
if (( value1&254 == 252 )); then if (( (value1&254)==252 )); then
echo "ULA" echo "ULA"
fi fi
# the GUA test is testing for 2000::/3 according to RFC 4291 # the GUA test is testing for 2000::/3 according to RFC 4291
if (( value1&112 == 32 )); then if (( (value1&112)==32 )); then
echo "GUA" echo "GUA"
fi fi
# the LL test is testing for fe80::/10 according to RFC 4193 # the LL test is testing for fe80::/10 according to RFC 4193
if (( value1 == 254 )) && (( value2&192 == 128 )); then if (( (value1)==254 )) && (( (value2&192)==128 )); then
echo "Link-local" echo "Link-local"
fi fi
} }