cap_realhost: neaten oper IP tag check

This commit is contained in:
Ed Kellett 2020-10-24 15:07:53 +01:00
parent 272e4a7d33
commit 8a776ce65c
1 changed files with 2 additions and 4 deletions

View File

@ -69,10 +69,8 @@ cap_realhost_outbound_msgbuf(void *data_)
if (!IsIPSpoof(data->client) && !EmptyString(data->client->sockhost) && strcmp(data->client->sockhost, "0"))
{
if (IsDynSpoof(data->client))
msgbuf_append_tag(msgbuf, "solanum.chat/ip", data->client->sockhost, CLICAP_OPER_REALHOST);
else
msgbuf_append_tag(msgbuf, "solanum.chat/ip", data->client->sockhost, CLICAP_REALHOST);
msgbuf_append_tag(msgbuf, "solanum.chat/ip", data->client->sockhost,
IsDynSpoof(data->client) ? CLICAP_OPER_REALHOST : CLICAP_REALHOST);
}
if (!EmptyString(data->client->orighost))