diff options
| author | Alexander Barton <alex@barton.de> | 2006-07-23 14:55:40 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2006-07-23 14:55:40 +0000 |
| commit | 5590f8624bca9c935201fc1337b11109ccceb7ec (patch) | |
| tree | 84a3e5d0f67d59dfa878cf8799b5c6c8cd9241f0 /src | |
| parent | fdc7ae22e964c59c6f01dc434dbbe96e886b1968 (diff) | |
| download | ngircd-5590f8624bca9c935201fc1337b11109ccceb7ec.tar.gz ngircd-5590f8624bca9c935201fc1337b11109ccceb7ec.zip | |
Don't include conn.h, conn-func.h is enough.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/irc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c index 6889cff2..3fb8423d 100644 --- a/src/ngircd/irc.c +++ b/src/ngircd/irc.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc.c,v 1.130 2006/05/10 21:24:01 alex Exp $"; +static char UNUSED id[] = "$Id: irc.c,v 1.131 2006/07/23 14:55:40 alex Exp $"; #include "imp.h" #include <assert.h> @@ -22,10 +22,9 @@ static char UNUSED id[] = "$Id: irc.c,v 1.130 2006/05/10 21:24:01 alex Exp $"; #include <string.h> #include "ngircd.h" -#include "conn.h" #include "resolve.h" -#include "conf.h" #include "conn-func.h" +#include "conf.h" #include "client.h" #include "channel.h" #include "defines.h" |