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

Fixed whois: "a Services Operator" -> "a Services Administrator"

This commit is contained in:
Bram Matthys
2003-01-28 20:32:21 +00:00
parent 007d0c1d32
commit bcac798a99
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -303,7 +303,7 @@ DLLFUNC int m_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
if (IsNetAdmin(acptr))
strlcat(buf, "a Network Administrator", sizeof buf);
else if (IsSAdmin(acptr))
strlcat(buf, "a Services Operator", sizeof buf);
strlcat(buf, "a Services Administrator", sizeof buf);
else if (IsAdmin(acptr) && !IsCoAdmin(acptr))
strlcat(buf, "a Server Administrator", sizeof buf);
else if (IsCoAdmin(acptr))