From: hikari Date: Sun, 19 Sep 2004 14:22:52 +0000 (+0000) Subject: Author: hikari X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=786c84e1e22e2077e3df12cf5b432f454889624b Author: hikari Log message: Small correction to an offset value. bb hikari git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1153 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/.cvsignore b/.cvsignore index c4770fe..506218e 100644 --- a/.cvsignore +++ b/.cvsignore @@ -5,3 +5,4 @@ config.h stamp-h config.status config.cache +.project diff --git a/ircd/m_info.c b/ircd/m_info.c index ec298d3..5a547ec 100644 --- a/ircd/m_info.c +++ b/ircd/m_info.c @@ -110,7 +110,7 @@ int m_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) HUNTED_ISME) return 0; - while (text[2]) + while (text[212]) { send_reply(sptr, RPL_INFO, *text); text++; @@ -140,7 +140,7 @@ int ms_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) if (hunt_server_cmd(sptr, CMD_INFO, cptr, 1, ":%C", 1, parc, parv) != HUNTED_ISME) return 0; - while (text[2]) + while (text[212]) { if (!IsOper(sptr)) send_reply(sptr, RPL_INFO, *text); @@ -173,7 +173,7 @@ int mo_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[]) if (hunt_server_cmd(sptr, CMD_INFO, cptr, 1, ":%C", 1, parc, parv) == HUNTED_ISME) { - while (text[2]) + while (text[212]) { if (!IsOper(sptr)) send_reply(sptr, RPL_INFO, *text);