From 42b3540a3c0e85b33fe3d2200faeb41cb2ea8e5f Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Tue, 29 Aug 2006 11:58:58 +0000 Subject: [PATCH] - Module coders: Fixed CALLBACKTYPE_CLOAK_EX, it was not working properly at all. --- Changes | 1 + src/cloak.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 11d299ff4..1dee4d639 100644 --- a/Changes +++ b/Changes @@ -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. diff --git a/src/cloak.c b/src/cloak.c index a1605faae..2dd21e91b 100644 --- a/src/cloak.c +++ b/src/cloak.c @@ -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);