]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/client.c
Allow hostmask cloaking when rDNS is disabled
[ngircd-alex.git] / src / ngircd / client.c
index a453312c3e93473a8a0ee7c2c8cf1c4a5b652660..1c7bd1ead0cc510a814d59f0c43d12c1e1bb65da 100644 (file)
@@ -337,9 +337,11 @@ Client_SetHostname( CLIENT *Client, const char *Hostname )
        assert(Client != NULL);
        assert(Hostname != NULL);
 
-       /* Only cloak the hostmask if it has not yet been cloaked (the period
-        * indicates it's still an IP address). */
-       if (Conf_CloakHost[0] && strchr(Client->host, '.')) {
+       /* 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] || strpbrk(Client->host, ".:"))) {
                char cloak[GETID_LEN];
 
                strlcpy(cloak, Hostname, GETID_LEN);