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

- Fix, fix #0003421 patch

This commit is contained in:
stskeeps
2007-07-10 19:35:25 +00:00
parent d67697b7a2
commit 1ae33ddbfb
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -351,7 +351,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
buf[0] = '\0';
if (IsNetAdmin(acptr))
strcat(buf, "an Network Administrator");
strcat(buf, "a Network Administrator");
else if (IsSAdmin(acptr))
strcat(buf, "a Services Administrator");
else if (IsAdmin(acptr) && !IsCoAdmin(acptr))
@@ -359,7 +359,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
else if (IsCoAdmin(acptr))
strcat(buf, "a Co Administrator");
else if (IsServices(acptr))
strcat(buf, "an Network Service");
strcat(buf, "a Network Service");
else if (IsOper(acptr))
strcat(buf, "an IRC Operator");