mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 09:50:29 +00:00
Fix hostmask cloaking bug for IPv6 too
This commit is contained in:
parent
f27827d793
commit
13b8324c4a
@ -338,8 +338,8 @@ Client_SetHostname( CLIENT *Client, const char *Hostname )
|
|||||||
assert(Hostname != NULL);
|
assert(Hostname != NULL);
|
||||||
|
|
||||||
/* Only cloak the hostmask if it has not yet been cloaked (the period
|
/* Only cloak the hostmask if it has not yet been cloaked (the period
|
||||||
* indicates it's still an IP address). */
|
* or colon indicates it's still an IP address). */
|
||||||
if (Conf_CloakHost[0] && strchr(Client->host, '.')) {
|
if (Conf_CloakHost[0] && strpbrk(Client->host, ".:")) {
|
||||||
char cloak[GETID_LEN];
|
char cloak[GETID_LEN];
|
||||||
|
|
||||||
strlcpy(cloak, Hostname, GETID_LEN);
|
strlcpy(cloak, Hostname, GETID_LEN);
|
||||||
|
Loading…
Reference in New Issue
Block a user