/ is a host character and not a nick character, so make pretty_mask treat it as such
This commit is contained in:
parent
59bb80930d
commit
1229514e6d
|
@ -381,7 +381,7 @@ pretty_mask(const char *idmask)
|
||||||
if(*t != '\0')
|
if(*t != '\0')
|
||||||
user = t;
|
user = t;
|
||||||
}
|
}
|
||||||
else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL)
|
else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL || strchr(mask, '/') != NULL)
|
||||||
{
|
{
|
||||||
if(*mask != '\0')
|
if(*mask != '\0')
|
||||||
host = mask;
|
host = mask;
|
||||||
|
|
Loading…
Reference in New Issue