Commit 50c112c7 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Avoid warning.

parent 02c3cb3f
...@@ -785,7 +785,7 @@ parse_kernel_route_rta(struct rtmsg *rtm, int len, struct kernel_route *route) ...@@ -785,7 +785,7 @@ parse_kernel_route_rta(struct rtmsg *rtm, int len, struct kernel_route *route)
memset(&route->gw, 0, sizeof(struct in6_addr)); memset(&route->gw, 0, sizeof(struct in6_addr));
route->plen = rtm->rtm_dst_len; route->plen = rtm->rtm_dst_len;
if(rtm->rtm_family == AF_INET) { if(rtm->rtm_family == AF_INET) {
const char zeroes[4] = {0, 0, 0, 0}; const unsigned char zeroes[4] = {0, 0, 0, 0};
v4tov6(route->prefix, zeroes); v4tov6(route->prefix, zeroes);
route->plen += 96; route->plen += 96;
} }
......
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