Make show_ip not care about remoteness (#139)
This commit is contained in:
parent
a03871c657
commit
f89a8deb3e
1 changed files with 1 additions and 1 deletions
|
@ -1833,7 +1833,7 @@ show_ip(struct Client *source_p, struct Client *target_p)
|
||||||
* to local opers.
|
* to local opers.
|
||||||
*/
|
*/
|
||||||
if(!ConfigFileEntry.hide_spoof_ips &&
|
if(!ConfigFileEntry.hide_spoof_ips &&
|
||||||
(source_p == NULL || (MyConnect(source_p) && HasPrivilege(source_p, "auspex:hostname"))))
|
(source_p == NULL || HasPrivilege(source_p, "auspex:hostname")))
|
||||||
return 1;
|
return 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue