1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

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() ...

This commit is contained in:
Alexander Barton 2008-03-11 14:05:27 +00:00 committed by Florian Westphal
parent feb31e4200
commit ab1f48a346

View File

@ -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"