diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-24 17:16:21 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-24 17:16:21 +0000 |
commit | 942cb38436fc3bb381a7b254fcfd4b66d23dc1c9 (patch) | |
tree | cf456e0a7b5eede2b760b1394fd1fb64ea50a677 | |
parent | e63637a37e9c764c81d2f68f516ef5446ce1e7ac (diff) |
BUILD : 1.7.14 (1101) BUGS : N/A NOTES : Unreal32 will now prompt users to check there link blocks if there wrong.
git-svn-id: svn://svn.anope.org/anope/trunk@1101 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@825 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/unreal32.c | 4 | ||||
-rw-r--r-- | version.log | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 4ad6aa274..5e92fe479 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1636,6 +1636,9 @@ int anope_event_error(char *source, int ac, char **av) if (debug) { alog("debug: %s", av[0]); } + if(strstr(av[0],"No matching link configuration")!=0) { + alog("Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf"); + } } return MOD_CONT; } @@ -2085,7 +2088,6 @@ void moduleAddIRCDMsgs(void) { m = createMessage("AP", anope_event_null); addCoreMessage(IRCD,m); } - /* The none token version of these is in messages.c */ if (UseTokens) { m = createMessage("2", m_stats); addCoreMessage(IRCD,m); diff --git a/version.log b/version.log index 213e96056..ed2ccab2c 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1100" +VERSION_BUILD="1101" # $Log$ # +# BUILD : 1.7.14 (1101) +# BUGS : N/A +# NOTES : Unreal32 will now prompt users to check there link blocks if there wrong. +# +# # BUILD : 1.7.14 (1100) # BUGS : # NOTES : removed os_killclones.c |