diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-20 00:05:38 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-20 00:05:38 +0000 |
commit | d1515210cf516912107f8aa48d34ea164c637b85 (patch) | |
tree | 4861a4a834e6acd82680b2f9f53a1aa275d9d6d8 /include | |
parent | 5e78b4dc561b5dfea1299f8b61e614f1514f295b (diff) |
Moved include of configreader.h to stop undefined reference to strlcpy (needs testing).
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1762 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r-- | include/services.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/services.h b/include/services.h index 88f132557..5f92e76e1 100644 --- a/include/services.h +++ b/include/services.h @@ -224,7 +224,6 @@ extern int strncasecmp(const char *, const char *, size_t); #include "defs.h" #include "slist.h" #include "events.h" -#include "configreader.h" /* pull in the various bits of STL to pull in */ #include <string> @@ -1123,7 +1122,7 @@ typedef struct ircd_modes_ { #define NI_NOEXPIRE 0x00100000 /* nicks in this group won't expire */ // Old NS_VERBOTEN, very fucking temporary. -#define NI_FORBIDDEN 0x80000000 +#define NI_FORBIDDEN 0x80000000 /* Languages. Never insert anything in the middle of this list, or * everybody will start getting the wrong language! If you want to change @@ -1230,7 +1229,9 @@ struct capabinfo_ { */ class IRCDProto; struct Uplink; +class ServerConfig; #include "extern.h" +#include "configreader.h" class IRCDProto { |