From: Roy Marples Date: Mon, 15 Sep 2014 22:50:44 +0000 (+0000) Subject: Fix FD_LISTEN | FD_UNPRIV flags X-Git-Tag: v6.4.4~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e21d85f7a63e938b34c11cde49c380ee8ccd183;p=thirdparty%2Fdhcpcd.git Fix FD_LISTEN | FD_UNPRIV flags --- diff --git a/control.h b/control.h index 260f126b..c6c04cfc 100644 --- a/control.h +++ b/control.h @@ -51,7 +51,7 @@ struct fd_list { }; TAILQ_HEAD(fd_list_head, fd_list); -#define FD_LISTEN (0<<1) +#define FD_LISTEN (1<<0) #define FD_UNPRIV (1<<1) int control_start(struct dhcpcd_ctx *, const char *);