Just a minor correction to cause less confusion to me next time I read
this bit if code :)
GK
Index: ChangeLog
===================================================================
RCS file: /cvsroot/undernet-ircu/ircu2.10/ChangeLog,v
retrieving revision 1.367
diff -u -r1.367 ChangeLog
--- ChangeLog 8 Jan 2003 03:17:17 -0000 1.367
+++ ChangeLog 9 Jan 2003 18:42:29 -0000
@@ -1,3 +1,6 @@
+2003-01-09 Jeekay <[EMAIL PROTECTED]>
+ * ircd/m_topic.c: Comment corrections
+
2003-01-07 Kevin L Mitchell <[EMAIL PROTECTED]>
* BUGS: removed from distribution
Index: ircd/m_topic.c
===================================================================
RCS file: /cvsroot/undernet-ircu/ircu2.10/ircd/m_topic.c,v
retrieving revision 1.11
diff -u -r1.11 m_topic.c
--- ircd/m_topic.c 7 Jan 2003 10:06:38 -0000 1.11
+++ ircd/m_topic.c 9 Jan 2003 18:42:29 -0000
@@ -98,7 +98,7 @@
struct Channel *chptr,char *topic)
{
int newtopic;
- /* if +n and not @'d, return an error and ignore the topic */
+ /* if +t and not @'d, return an error and ignore the topic */
if ((chptr->mode.mode & MODE_TOPICLIMIT) != 0 && !is_chan_op(sptr,
chptr))
{
send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
@@ -113,7 +113,7 @@
ircd_strncpy(chptr->topic, topic, TOPICLEN);
ircd_strncpy(chptr->topic_nick, cli_name(sptr), NICKLEN);
chptr->topic_time = CurrentTime;
- /* Fixed in 2.10.11: Don't propergate local topics */
+ /* Fixed in 2.10.11: Don't propagate local topics */
if (!IsLocalChannel(chptr->chname))
sendcmdto_serv_butone(sptr, CMD_TOPIC, cptr, "%H :%s", chptr,
chptr->topic);