From 10bf77903fb0e954dfb1064f3d4dbfac489eb4d6 Mon Sep 17 00:00:00 2001 From: aquanight Date: Fri, 6 Apr 2007 22:17:27 +0000 Subject: [PATCH] Fixed a couple of webtv whois grammar errors. --- Changes | 1 + src/modules/webtv.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index fa3378b91..20fc84059 100644 --- a/Changes +++ b/Changes @@ -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). diff --git a/src/modules/webtv.c b/src/modules/webtv.c index 00faf9c29..099a78fe4 100644 --- a/src/modules/webtv.c +++ b/src/modules/webtv.c @@ -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)