[svn] Remove '*' from valid server name characters.
This makes it impossible to connect hostmasked servers. (This support didn't work well anyway, was incompatible with TS6 and we never masked ourselves.)
This commit is contained in:
parent
63aecfb960
commit
e5d9ca18eb
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
jilles 2007/01/31 23:57:18 UTC (20070131-3173)
|
||||
Log:
|
||||
Change spambot, flooder and jupe joiner notices from host to orighost.
|
||||
|
||||
|
||||
Changes: Modified:
|
||||
+1 -1 trunk/modules/core/m_join.c (File Modified)
|
||||
+2 -2 trunk/modules/core/m_message.c (File Modified)
|
||||
+2 -2 trunk/src/channel.c (File Modified)
|
||||
|
||||
|
||||
jilles 2007/01/28 22:13:18 UTC (20070128-3169)
|
||||
Log:
|
||||
Add documentation for SASL client protocol, same as atheme doc/SASL.
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define SERNO "20070128-3169"
|
||||
#define SERNO "20070131-3173"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
* $Id: match.c 708 2006-02-05 22:44:03Z jilles $
|
||||
* $Id: match.c 3175 2007-02-01 00:02:35Z jilles $
|
||||
*
|
||||
*/
|
||||
#include "stdinc.h"
|
||||
|
@ -599,7 +599,7 @@ const unsigned int CharAttrs[] = {
|
|||
/* ' */ PRINT_C | CHAN_C | NONEOS_C,
|
||||
/* ( */ PRINT_C | CHAN_C | NONEOS_C,
|
||||
/* ) */ PRINT_C | CHAN_C | NONEOS_C,
|
||||
/* * */ PRINT_C | KWILD_C | MWILD_C | CHAN_C | NONEOS_C | SERV_C,
|
||||
/* * */ PRINT_C | KWILD_C | MWILD_C | CHAN_C | NONEOS_C,
|
||||
/* + */ PRINT_C | CHAN_C | NONEOS_C,
|
||||
/* , */ PRINT_C | NONEOS_C,
|
||||
/* - */ PRINT_C | NICK_C | CHAN_C | NONEOS_C | USER_C | HOST_C,
|
||||
|
|
Loading…
Reference in New Issue