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

Fixed the TKL bug?

This commit is contained in:
codemastr
2000-07-15 23:56:57 +00:00
parent 2e461cba19
commit 65118165d6
3 changed files with 6 additions and 8 deletions
+1
View File
@@ -451,3 +451,4 @@
- Added protection against webproxies
- SJ3 part 2/3 and a VL fix
- Indentation and more SJ3 fixes
- Fixed TKL?
+2 -2
View File
@@ -262,7 +262,7 @@ int find_tkline_match(cptr, xx)
for (lp = tklines; lp; lp = lp->next)
{
if (!(*lp->hostmask < '0') && (*lp->hostmask > '9'))
if (*lp->hostmask >= '0' && *lp->hostmask <= '9')
is_ip = 1;
else
is_ip = 0;
@@ -270,7 +270,7 @@ int find_tkline_match(cptr, xx)
if (is_ip == 0 ? (!match(lp->hostmask, chost)
&& !match(lp->usermask, cname)) : (!match(lp->hostmask,
chost) || !match(lp->hostmask, cip))
&& !match(lp->usermask, cname))
&& !match(lp->usermask, cname) && (xx != 2 || !match(lp->usermask, cname)))
{
if ((lp->type & (TKL_KILL)) && (xx != 2))
+3 -6
View File
@@ -10,7 +10,7 @@ case $CONFIG in
;;
esac
echo "Extracting $package/ircd/version.c..."
echo "Extracting src/version.c..."
if test -r version.c
then
@@ -156,13 +156,10 @@ char *unrealcredits[] =
"zero9000 Kevin Alford",
" - UnrealIRCd logo, graphics, null desu ;), ideas etc.",
" \2\37codemastr would like to thank:\2\37",
"CaliMonk Ivo Teel calimonk@nhn.net",
"CaliMonk Ivo Teel calimonk@axenet.org",
" - Getting me started at NeoHorizon which basically got me",
" started coding IRCd",
"Kenpo Ian Ricci ianr@nhn.net",
" - Starting me out learning *nix and giving me a place",
" to develop Unreal",
"[FBI] Corey Lang *unknown*",
"[FBI] Corey Lang fbi@dal.net",
" - Being a good IRC friend and getting me started with",
" IRC through our old little wIRCd net :)",
"",