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

Fixed a couple of webtv whois grammar errors.

This commit is contained in:
aquanight
2007-04-06 22:17:27 +00:00
parent ce5303499d
commit 10bf77903f
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1545,3 +1545,4 @@
- Added class::options::notargetlag to prevent to lag to users from this class, suggested by djGrrr (#0003145).
- Added include::bind-ip to bind an ip to download in case of having defined LIBCURL, suggested by djGrrr (#00003185).
- oper::from::userhost now accepts a CIDR address (eg *me@1.2.3.0/24), requested by djGrrr (#0003234).
- Corrected a couple of grammar errors in WebTV whois (/msg IRC WHOIS nick) output, reported by CuLpA (#0003244).
+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 %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)