diff options
Diffstat (limited to 'src/cmd_userhost.cpp')
-rw-r--r-- | src/cmd_userhost.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_userhost.cpp b/src/cmd_userhost.cpp index 363ba611c..6f31ad6a7 100644 --- a/src/cmd_userhost.cpp +++ b/src/cmd_userhost.cpp @@ -35,7 +35,7 @@ CmdResult cmd_userhost::Handle (const char** parameters, int pcnt, userrec *user { retbuf = retbuf + " "; - if (*u->oper) + if (IS_OPER(u)) { retbuf = retbuf + "*=+"; } @@ -46,7 +46,7 @@ CmdResult cmd_userhost::Handle (const char** parameters, int pcnt, userrec *user retbuf = retbuf + u->ident + "@"; - if (*user->oper) + if (IS_OPER(user)) { retbuf = retbuf + u->host; } |