]> jfr.im git - solanum.git/commitdiff
[svn] Remove '*' from valid server name characters.
authorjilles <redacted>
Thu, 1 Feb 2007 00:02:35 +0000 (16:02 -0800)
committerjilles <redacted>
Thu, 1 Feb 2007 00:02:35 +0000 (16:02 -0800)
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
include/serno.h
src/match.c

index 4fa3a80d5bce61c8ae7b8f0339dc7df9ad84f03c..ec870a1d00278a91012eb2f69f3b93409cd956b6 100644 (file)
--- 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.
index 6ac72d3d96a69cb1b0d0b9de0cfb00ec34ecfeb7..a7b8cea3f39c0ea6d105d5ab8a36e8df0e4259e0 100644 (file)
@@ -1 +1 @@
-#define SERNO "20070128-3169"
+#define SERNO "20070131-3173"
index 6b13f8293f6b875180e438dee638d3ce1e5f2464..ee77aeb8361a06d5e6c8c98271c778a16d0c89f1 100644 (file)
@@ -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,