[svn] - forgot to do something

This commit is contained in:
nenolod 2007-07-06 00:56:14 -07:00
parent 514235a762
commit b076458c6f
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,12 @@
nenolod 2007/07/06 07:54:54 UTC (20070706-3524)
Log:
- fix a possible problem with ipv6
Changes: Modified:
+4 -0 trunk/extensions/ip_cloaking.c (File Modified)
nenolod 2007/07/06 07:48:28 UTC (20070706-3522) nenolod 2007/07/06 07:48:28 UTC (20070706-3522)
Log: Log:
- new ip cloaking module - new ip cloaking module

View file

@ -1,4 +1,4 @@
/* $Id: ip_cloaking.c 3524 2007-07-06 07:54:54Z nenolod $ */ /* $Id: ip_cloaking.c 3526 2007-07-06 07:56:14Z nenolod $ */
#include "stdinc.h" #include "stdinc.h"
#include "modules.h" #include "modules.h"
@ -42,7 +42,7 @@ mapi_hfn_list_av1 ip_cloaking_hfnlist[] = {
}; };
DECLARE_MODULE_AV1(ip_cloaking, _modinit, _moddeinit, NULL, NULL, DECLARE_MODULE_AV1(ip_cloaking, _modinit, _moddeinit, NULL, NULL,
ip_cloaking_hfnlist, "$Revision: 3524 $"); ip_cloaking_hfnlist, "$Revision: 3526 $");
static void static void
distribute_hostchange(struct Client *client) distribute_hostchange(struct Client *client)
@ -109,7 +109,10 @@ do_host_cloak_ip(const char *inbuf, char *outbuf)
tptr = strrchr(buf, '.'); tptr = strrchr(buf, '.');
if (tptr == NULL) if (tptr == NULL)
{
strncpy(outbuf, inbuf, HOSTLEN);
return; return;
}
*tptr++ = '\0'; *tptr++ = '\0';

View file

@ -1 +1 @@
#define SERNO "20070706-3522" #define SERNO "20070706-3524"