Commit 3206bc62 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Indentation fix.

parent 593bf33f
...@@ -239,8 +239,8 @@ kernel_route(int add, const unsigned char *dest, unsigned short plen, ...@@ -239,8 +239,8 @@ kernel_route(int add, const unsigned char *dest, unsigned short plen,
memcpy(&msg.rtmsg_gateway, gate, sizeof(struct in6_addr)); memcpy(&msg.rtmsg_gateway, gate, sizeof(struct in6_addr));
rc = ioctl(route_socket, add ? SIOCADDRT : SIOCDELRT, &msg); rc = ioctl(route_socket, add ? SIOCADDRT : SIOCDELRT, &msg);
if(rc < 0) if(rc < 0)
return -1; return -1;
return 1; 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