Commit 1fb48a9e authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo in martian_address.

parent f673cd1c
...@@ -401,8 +401,7 @@ martian_prefix(const unsigned char *prefix, int plen) ...@@ -401,8 +401,7 @@ martian_prefix(const unsigned char *prefix, int plen)
(prefix[15] == 0 || prefix[15] == 1)) || (prefix[15] == 0 || prefix[15] == 1)) ||
(plen >= 96 && v4mapped(prefix) && (plen >= 96 && v4mapped(prefix) &&
((plen >= 104 && (prefix[12] == 127 || prefix[12] == 0)) || ((plen >= 104 && (prefix[12] == 127 || prefix[12] == 0)) ||
(plen >= 100 && (plen >= 100 && (prefix[12] & 0xE0) == 0xE0)));
((prefix[12] & 0xF0) == 0xF0 || (prefix[12] & 0xF0) == 0xE0))));
} }
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment