Commit 44e9e37d authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Have kernel return ENOSYS for IPv4 routes.

parent c5b78fdc
......@@ -597,7 +597,7 @@ kernel_route(int operation, const unsigned char *dest, unsigned short plen,
if(v4mapped(gate)) {
/* Not implemented yet. */
errno = EINVAL;
errno = ENOSYS;
return -1;
}
......
......@@ -276,7 +276,7 @@ kernel_route(int operation, const unsigned char *dest, unsigned short plen,
if(v4mapped(gate)) {
/* Not implemented yet. */
errno = EINVAL;
errno = ENOSYS;
return -1;
}
......
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