callerid: fix a missed instance of hardcoded +g
This commit is contained in:
parent
c6e584dd1b
commit
8ad8fd34f5
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ add_callerid_accept_for_source(enum message_type msgtype, struct Client *source_
|
||||||
{
|
{
|
||||||
sendto_one_numeric(source_p, ERR_OWNMODE,
|
sendto_one_numeric(source_p, ERR_OWNMODE,
|
||||||
form_str(ERR_OWNMODE),
|
form_str(ERR_OWNMODE),
|
||||||
target_p->name, "+g");
|
target_p->name, IsSetStrictCallerID(target_p) ? "+g" : "+G");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue