diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-21 12:54:45 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-21 12:54:45 +0000 |
commit | 5f799bc2b5016c1cb29fc53cbce0171650192288 (patch) | |
tree | 93bcb8cc13913ef268d1e3b31bd372bdb726672a | |
parent | 89e802e16566cd098b49754f30475a01df97f1ae (diff) |
BUILD : 1.7.3 (118) BUGS : 56 NOTES : Check for VHOST capable ircd on HostServAlias induction.
git-svn-id: svn://svn.anope.org/anope/trunk@118 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@92 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | init.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 10 insertions, 1 deletions
@@ -4,6 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 05/21 A Auto enforce upon AKICK addition. [ #63] 05/21 A New file docs/OLDCHANGES contains all change history. [ #65] 05/21 F Removed threads.c file. [ #64] +05/21 F Check for VHOST capable ircd on HostServAlias induction. [ #56] Anope Version 1.7.3 ------------------- @@ -219,12 +219,16 @@ void introduce_user(const char *user) #else NICK(s_DevNullAlias, desc_DevNullAlias, "+i"); #endif + +#ifdef HAS_VHOST if (s_HostServAlias && (!user || stricmp(user, s_HostServAlias) == 0)) #if defined(IRC_ULTIMATE) || defined(IRC_UNREAL) || defined(IRC_VIAGRA) NICK(s_HostServAlias, desc_HostServAlias, "+ioS"); #else NICK(s_HostServAlias, desc_HostServAlias, "+io"); #endif +#endif + if (s_GlobalNoticerAlias && (!user || stricmp(user, s_GlobalNoticerAlias) == 0)) #if defined(IRC_ULTIMATE) || defined(IRC_UNREAL) diff --git a/version.log b/version.log index 54b7e1354..6cbff2c14 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="117" +VERSION_BUILD="118" # $Log$ # +# BUILD : 1.7.3 (118) +# BUGS : 56 +# NOTES : Check for VHOST capable ircd on HostServAlias induction. +# # BUILD : 1.7.3 (117) # BUGS : 63 # NOTES : Auto enforce upon AKICK addition. |