diff options
-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. |