show IPs in remote /stats i (#312)

Co-authored-by: Eric Mertens <emertens@galois.com>
This commit is contained in:
Jess Porter 2022-04-08 18:06:43 +01:00 committed by GitHub
parent 80d71456cf
commit 099d470763
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1844,7 +1844,7 @@ show_ip_conf(struct ConfItem *aconf, struct Client *source_p)
{
if(IsConfDoSpoofIp(aconf))
{
if(!ConfigFileEntry.hide_spoof_ips && MyOper(source_p))
if(!ConfigFileEntry.hide_spoof_ips && IsOper(source_p))
return 1;
return 0;
@ -1857,7 +1857,7 @@ int
show_ip_whowas(struct Whowas *whowas, struct Client *source_p)
{
if(whowas->flags & WHOWAS_IP_SPOOFING)
if(ConfigFileEntry.hide_spoof_ips || !MyOper(source_p))
if(ConfigFileEntry.hide_spoof_ips || !IsOper(source_p))
return 0;
if(whowas->flags & WHOWAS_DYNSPOOF)
if(!IsOper(source_p))