diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-18 17:01:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-18 17:01:00 +0000 |
commit | b190e65fd18284efd3361cee55aba4d8d04d55a4 (patch) | |
tree | d57e1ce0d5915b4910c41f4cdcdfa791a4179349 /usr.sbin/ripd/interface.c | |
parent | ae647d82e4b6735021bcb2964503fb3fb2c76985 (diff) |
spacing
Diffstat (limited to 'usr.sbin/ripd/interface.c')
-rw-r--r-- | usr.sbin/ripd/interface.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/ripd/interface.c b/usr.sbin/ripd/interface.c index 36153e476a7..4605f911d95 100644 --- a/usr.sbin/ripd/interface.c +++ b/usr.sbin/ripd/interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interface.c,v 1.3 2007/09/11 18:05:36 claudio Exp $ */ +/* $OpenBSD: interface.c,v 1.4 2007/10/18 17:00:59 deraadt Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -134,7 +134,7 @@ if_fsm(struct iface *iface, enum iface_event event) struct iface * if_find_index(u_short ifindex) { - struct iface *iface; + struct iface *iface; LIST_FOREACH(iface, &conf->iface_list, entry) { if (iface->ifindex == ifindex) @@ -296,7 +296,7 @@ if_set_mcast(struct iface *iface) int if_set_mcast_loop(int fd) { - u_int8_t loop = 0; + u_int8_t loop = 0; if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, (char *)&loop, sizeof(loop)) < 0) { @@ -310,7 +310,7 @@ if_set_mcast_loop(int fd) void if_set_recvbuf(int fd) { - int bsize; + int bsize; bsize = 65535; while (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &bsize, @@ -343,7 +343,7 @@ if_join_group(struct iface *iface, struct in_addr *addr) int if_leave_group(struct iface *iface, struct in_addr *addr) { - struct ip_mreq mreq; + struct ip_mreq mreq; switch (iface->type) { case IF_TYPE_POINTOPOINT: @@ -365,10 +365,10 @@ if_leave_group(struct iface *iface, struct in_addr *addr) struct iface * if_new(struct kif *kif) { - struct sockaddr_in *sain; - struct iface *iface; - struct ifreq *ifr; - int s; + struct sockaddr_in *sain; + struct iface *iface; + struct ifreq *ifr; + int s; if ((iface = calloc(1, sizeof(*iface))) == NULL) err(1, "if_new: calloc"); |