From e5d9ca18eb7ce993806e3c0752baf813ff3ddf23 Mon Sep 17 00:00:00 2001 From: jilles Date: Wed, 31 Jan 2007 16:02:35 -0800 Subject: [PATCH] [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.) --- ChangeLog | 11 +++++++++++ include/serno.h | 2 +- src/match.c | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4fa3a80..ec870a1 100644 --- a/ChangeLog +++ b/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. diff --git a/include/serno.h b/include/serno.h index 6ac72d3..a7b8cea 100644 --- a/include/serno.h +++ b/include/serno.h @@ -1 +1 @@ -#define SERNO "20070128-3169" +#define SERNO "20070131-3173" diff --git a/src/match.c b/src/match.c index 6b13f82..ee77aeb 100644 --- a/src/match.c +++ b/src/match.c @@ -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,