1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 22:43:12 +02:00

- #0003232 reported by vonitsanet patched by djGrr, regarding /map is not shown u:lined servers to local opers and /links does.

This commit is contained in:
stskeeps
2007-04-24 10:59:02 +00:00
parent 1e0c422213
commit 4db5289ea6
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1610,3 +1610,4 @@ MOTDs
- Fixed a typo in #003091 related patch
- #0002846 reported by alex323, patched by WolfSage, regarding local ircop cannot issue CLOSE command
- #0002685 reported by w00t, patched by WolfSage, regarding useless if () in m_help.c
- #0003232 reported by vonitsanet patched by djGrr, regarding /map is not shown u:lined servers to local opers and /links does.
+1 -1
View File
@@ -130,7 +130,7 @@ static void dump_map(aClient *cptr, aClient *server, char *mask, int prompt_leng
for (lp = Servers; lp; lp = lp->next)
{
acptr = lp->value.cptr;
if (IsULine(acptr) && HIDE_ULINES && !IsOper(cptr))
if (IsULine(acptr) && HIDE_ULINES && !IsAnOper(cptr))
continue;
if (acptr->srvptr != server)
continue;