/ is a host character and not a nick character, so make pretty_mask treat it as such
This commit is contained in:
parent
9a180ae365
commit
179f024d18
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ pretty_mask(const char *idmask)
|
|||
if(*t != '\0')
|
||||
user = t;
|
||||
}
|
||||
else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL)
|
||||
else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL || strchr(mask, '/') != NULL)
|
||||
{
|
||||
if(*mask != '\0')
|
||||
host = mask;
|
||||
|
|
Loading…
Reference in a new issue