From: Roy Marples Date: Thu, 31 Jul 2008 12:26:45 +0000 (+0000) Subject: fd_set is not a struct. X-Git-Tag: v4.0.2~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ad54d5114520814ca3beab1099de19712b5fd7c;p=thirdparty%2Fdhcpcd.git fd_set is not a struct. --- diff --git a/client.c b/client.c index f33b0346..98806b53 100644 --- a/client.c +++ b/client.c @@ -744,7 +744,7 @@ drop_config(struct if_state *state, const char *reason, static int wait_for_fd(struct if_state *state, int *fd) { - struct fd_set fds; + fd_set fds; struct interface *iface = state->interface; int r, maxfd; struct timeval now, *ref;