about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2008-03-11 14:05:27 +0000
committerFlorian Westphal <fw@strlen.de>2008-03-11 15:42:58 +0100
commitab1f48a34668295275b794f1cc09839acc445c2b (patch)
tree6c1f2a24ccb894110b9850f679ccfb57aab580f1 /src
parentfeb31e4200b42e0a5e9fb9637fa5f03c7ec05fcb (diff)
downloadngircd-ab1f48a34668295275b794f1cc09839acc445c2b.tar.gz
ngircd-ab1f48a34668295275b794f1cc09839acc445c2b.zip
Fix #include's: search log.h locally, include string.h. The latter is required because we include conn.h, which includes resolve.h, which includes ng_ipaddr.h, which contains a macro using strlcpy() ...
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conn-func.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c
index 92da1428..2f15786f 100644
--- a/src/ngircd/conn-func.c
+++ b/src/ngircd/conn-func.c
@@ -16,11 +16,12 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conn-func.c,v 1.11 2007/10/04 15:03:56 alex Exp $";
+static char UNUSED id[] = "$Id: conn-func.c,v 1.12 2008/03/11 14:05:27 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
-#include <log.h>
+#include <string.h>
+#include "log.h"
 
 #include "conn.h"
 #include "client.h"