1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 10:06:39 +02:00

- Module coders: Fixed CALLBACKTYPE_CLOAK_EX, it was not working properly at all.

This commit is contained in:
Bram Matthys
2006-08-29 11:58:58 +00:00
parent 597226b3a4
commit 42b3540a3c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1354,3 +1354,4 @@
- Fixed SSL crash problem due to previous SSL change.
- Fixed some bugs in webtv code that could have caused trouble in the future (off by one),
reported by Ilja van Sprundel.
- Module coders: Fixed CALLBACKTYPE_CLOAK_EX, it was not working properly at all.
+1 -1
View File
@@ -164,7 +164,7 @@ char host[256], *mask, *x, *p, *q;
/* Call the cloaking layer */
if (RCallbacks[CALLBACKTYPE_CLOAK_EX])
mask = RCallbacks[CALLBACKTYPE_CLOAK]->func.pcharfunc(sptr, host);
mask = RCallbacks[CALLBACKTYPE_CLOAK_EX]->func.pcharfunc(sptr, host);
else
mask = RCallbacks[CALLBACKTYPE_CLOAK]->func.pcharfunc(host);