1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 07:43:13 +02:00

- Fixed ./Config showing freebsd 3.0 in freebsd 4

- Made so badwords.*.conf accepts # comments
- Added some default default badwords.message.conf and badwords.channel.conf
This commit is contained in:
stskeeps
2000-06-18 10:10:34 +00:00
parent 1d41fae3ca
commit a30af17cb8
4 changed files with 115 additions and 2 deletions
+3 -1
View File
@@ -372,4 +372,6 @@
- Fixed a counting bug with unknown connections, very hopefully
- Fixed /htm giving wrong response when /htm to 1
- Fixed /shun showing "1970" to permanently shunned users
- Fixed ./Config showing freebsd 3.0 in freebsd 4
- Fixed ./Config showing freebsd 3.0 in freebsd 4
- Made so badwords.*.conf accepts # comments
- Added some default default badwords.message.conf and badwords.channel.conf
+54
View File
@@ -0,0 +1,54 @@
#
# Unreal Internet Relay Chat Daemon
# Copyright (C) Carsten V. Munk 2000
#
# NOTE: Those words are not meant to insult you (the user)
# but is meant to be a list of words so that the +G channel/user mode
# will work properly. You can easily modify this file at your will.
# If you got words to add to this file, please mail badwords@tspre.org
#
#
#
#
#
#
# This is some filling space, scroll down to see the words
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
pussy
fuck
whore
slut
shit
asshole
bitch
cunt
vagina
penis
jackass
*fucker*
faggot
fag
horny
gay
dickhead
sonuvabitch
*fuck*
ass
boobs
tits
+54
View File
@@ -0,0 +1,54 @@
#
# Unreal Internet Relay Chat Daemon
# Copyright (C) Carsten V. Munk 2000
#
# NOTE: Those words are not meant to insult you (the user)
# but is meant to be a list of words so that the +G channel/user mode
# will work properly. You can easily modify this file at your will.
# If you got words to add to this file, please mail badwords@tspre.org
#
#
#
#
#
#
# This is some filling space, scroll down to see the words
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
pussy
fuck
whore
slut
shit
asshole
bitch
cunt
vagina
penis
jackass
*fucker*
faggot
fag
horny
gay
dickhead
sonuvabitch
*fuck*
ass
boobs
tits
+4 -1
View File
@@ -158,7 +158,8 @@ int loadbadwords_channel(char *wordfile)
*ptr = '\0';
if (buf[0] == '\0')
continue;
if (buf[0] == '#')
continue;
for (j = 0, isregex = 0; j < strlen(buf); j++)
{
if ((int)buf[j] < 65 || (int)buf[j] > 123)
@@ -214,6 +215,8 @@ int loadbadwords_message(char *wordfile)
*ptr = '\0';
if (buf[0] == '\0')
continue;
if (buf[0] == '#')
continue;
for (j = 0, isregex = 0; j < strlen(buf); j++)
{