Committer : shad0w
CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2004-09-19 14:23:02 UTC
Modified files:
ircd/m_info.c .cvsignore
Log message:
Author: hikari <[EMAIL PROTECTED]>
Log message:
Small correction to an offset value.
bb
hikari
---------------------- diff included ----------------------
Index: ircu2.10/.cvsignore
diff -u ircu2.10/.cvsignore:1.2 ircu2.10/.cvsignore:1.3
--- ircu2.10/.cvsignore:1.2 Mon May 7 14:21:17 2001
+++ ircu2.10/.cvsignore Sun Sep 19 07:22:52 2004
@@ -5,3 +5,4 @@
stamp-h
config.status
config.cache
+.project
Index: ircu2.10/ircd/m_info.c
diff -u ircu2.10/ircd/m_info.c:1.9 ircu2.10/ircd/m_info.c:1.10
--- ircu2.10/ircd/m_info.c:1.9 Mon Jun 14 18:20:35 2004
+++ ircu2.10/ircd/m_info.c Sun Sep 19 07:22:52 2004
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: m_info.c,v 1.9 2004/06/15 01:20:35 entrope Exp $
+ * $Id: m_info.c,v 1.10 2004/09/19 14:22:52 shad0w Exp $
*/
/*
@@ -110,7 +110,7 @@
HUNTED_ISME)
return 0;
- while (text[2])
+ while (text[212])
{
send_reply(sptr, RPL_INFO, *text);
text++;
@@ -140,7 +140,7 @@
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 @@
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);
----------------------- End of diff -----------------------