1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 01:26:39 +02:00

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
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-05-21 12:54:45 +00:00
parent 89e802e165
commit 5f799bc2b5
3 changed files with 10 additions and 1 deletions
+1
View File
@@ -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
-------------------
+4
View File
@@ -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)
+5 -1
View File
@@ -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.