diff options
| author | Alexander Barton <alex@barton.de> | 2010-07-12 13:24:45 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2010-07-12 13:24:45 +0200 |
| commit | 37ee0a331394d990e514a1a7b2b52ecb879b9701 (patch) | |
| tree | ea3890d8d6cd4946a539c2dcb0110cfb4595252c /src | |
| parent | 03457135b727fc39bb6601b8fb434db2680edc82 (diff) | |
| download | ngircd-37ee0a331394d990e514a1a7b2b52ecb879b9701.tar.gz ngircd-37ee0a331394d990e514a1a7b2b52ecb879b9701.zip | |
io.c: Include conn.h when using the select() API
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ngircd/io.c b/src/ngircd/io.c index e811e81b..cb2b55a9 100644 --- a/src/ngircd/io.c +++ b/src/ngircd/io.c @@ -105,6 +105,7 @@ static bool io_event_change_devpoll(int fd, short what); #ifdef IO_USE_SELECT #include "defines.h" /* for conn.h */ #include "proc.h" /* for PROC_STAT (needed by conf.h) */ +#include "conn.h" /* for CONN_ID (needed by conf.h) */ #include "conf.h" /* for Conf_MaxConnections */ static fd_set readers; |