1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 02:16:39 +02:00

- #0003244 reported by CuLpA about grammar errors in webtv outputs

This commit is contained in:
stskeeps
2007-06-22 08:42:23 +00:00
parent 0f0ffc9580
commit a9682b7ae2
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1511,3 +1511,4 @@
This should make it easier for packaged binary releases to work (even
though this probably means Debian will take us in, ick .. Can't we pull
a new fight with debian-legal again?)
- #0003244 reported by CuLpA about grammar errors in webtv outputs
+2 -2
View File
@@ -367,7 +367,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
strcat(buf, "a Local IRC Operator");
if (buf[0])
sendto_one(sptr,
":IRC PRIVMSG %s :%s is an %s on %s",
":IRC PRIVMSG %s :%s is a %s on %s",
sptr->name, name, buf, ircnetwork);
}
@@ -378,7 +378,7 @@ int w_whois(aClient *cptr, aClient *sptr, int parc, char *parv[])
if (acptr->umodes & UMODE_BOT)
{
sendto_one(sptr, ":IRC PRIVMSG %s :%s is an Bot on %s",
sendto_one(sptr, ":IRC PRIVMSG %s :%s is a Bot on %s",
sptr->name, name, ircnetwork);
}
if (acptr->umodes & UMODE_SECURE)