X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_subnet.c;h=b426a8e9b7c1b6a67c258f43f21886ebe54a7e5d;hp=81cd52cba410fcfa1540aa7697808c900b2b5467;hb=6f9f6779e6bd1dd7bb795b42dad550863a386ca8;hpb=9f38e394636a177c00a4545de2a99c661de36386 diff --git a/src/protocol_subnet.c b/src/protocol_subnet.c index 81cd52cb..b426a8e9 100644 --- a/src/protocol_subnet.c +++ b/src/protocol_subnet.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: protocol_subnet.c,v 1.1.4.8 2002/09/09 21:25:02 guus Exp $ + $Id: protocol_subnet.c,v 1.1.4.9 2002/09/09 22:33:13 guus Exp $ */ #include "config.h" @@ -43,7 +43,7 @@ #include "system.h" -int send_add_subnet(connection_t * c, subnet_t * subnet) +int send_add_subnet(connection_t *c, subnet_t *subnet) { int x; char *netstr; @@ -58,7 +58,7 @@ int send_add_subnet(connection_t * c, subnet_t * subnet) return x; } -int add_subnet_h(connection_t * c) +int add_subnet_h(connection_t *c) { char subnetstr[MAX_STRING_SIZE]; char name[MAX_STRING_SIZE]; @@ -133,7 +133,7 @@ int add_subnet_h(connection_t * c) return 0; } -int send_del_subnet(connection_t * c, subnet_t * s) +int send_del_subnet(connection_t *c, subnet_t *s) { int x; char *netstr; @@ -149,7 +149,7 @@ int send_del_subnet(connection_t * c, subnet_t * s) return x; } -int del_subnet_h(connection_t * c) +int del_subnet_h(connection_t *c) { char subnetstr[MAX_STRING_SIZE]; char name[MAX_STRING_SIZE];