]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/client.c
Update Client_SetHostname() to not use strpbrk()
[ngircd-alex.git] / src / ngircd / client.c
index 7e6ff68afd4b8cf84e68d116f2ebe3bcd64d0fc3..67c0260423ac8a3e2ca9a099397691eeae40711a 100644 (file)
@@ -337,7 +337,11 @@ Client_SetHostname( CLIENT *Client, const char *Hostname )
        assert(Client != NULL);
        assert(Hostname != NULL);
 
-       if (Conf_CloakHost[0]) {
+       /* Only cloak the hostmask if it has not yet been cloaked.
+        * The period or colon indicates it's still an IP address.
+        * An empty string means a rDNS lookup did not happen (yet). */
+       if (Conf_CloakHost[0] && (!Client->host[0] || strchr(Client->host, '.')
+                                 || strchr(Client->host, ':'))) {
                char cloak[GETID_LEN];
 
                strlcpy(cloak, Hostname, GETID_LEN);