trivial indent fix.

This commit is contained in:
Simon Kelley
2012-10-24 14:16:00 +01:00
parent 23780dd577
commit b191a77901

View File

@@ -420,7 +420,7 @@ void bindtodevice(int fd)
SO_BINDTODEVICE is only available Linux. */ SO_BINDTODEVICE is only available Linux. */
struct irec *iface, *found; struct irec *iface, *found;
for (found = NULL, iface = daemon->interfaces; iface; iface = iface->next) for (found = NULL, iface = daemon->interfaces; iface; iface = iface->next)
if (iface->dhcp_ok) if (iface->dhcp_ok)
{ {
@@ -435,14 +435,14 @@ void bindtodevice(int fd)
} }
if (found) if (found)
{ {
struct ifreq ifr; struct ifreq ifr;
strcpy(ifr.ifr_name, found->name); strcpy(ifr.ifr_name, found->name);
/* only allowed by root. */ /* only allowed by root. */
if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, (void *)&ifr, sizeof(ifr)) == -1 && if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, (void *)&ifr, sizeof(ifr)) == -1 &&
errno != EPERM) errno != EPERM)
die(_("failed to set SO_BINDTODEVICE on DHCP socket: %s"), NULL, EC_BADNET); die(_("failed to set SO_BINDTODEVICE on DHCP socket: %s"), NULL, EC_BADNET);
} }
} }
#endif #endif