ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/m_topic.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/modules/m_topic.c (file contents):
Revision 3377 by michael, Thu Apr 24 16:15:51 2014 UTC vs.
Revision 3940 by michael, Tue Jun 10 19:27:34 2014 UTC

# Line 89 | Line 89 | m_topic(struct Client *source_p, int par
89  
90        snprintf(topic_info, sizeof(topic_info), "%s!%s@%s", source_p->name,
91                 source_p->username, source_p->host);
92 <      set_channel_topic(chptr, parv[2], topic_info, CurrentTime, 1);
92 >      channel_set_topic(chptr, parv[2], topic_info, CurrentTime, 1);
93  
94        sendto_server(source_p, NOCAPS, NOCAPS, ":%s TOPIC %s :%s",
95                      source_p->id, chptr->chname,
# Line 162 | Line 162 | ms_topic(struct Client *source_p, int pa
162    else
163      snprintf(topic_info, sizeof(topic_info), "%s!%s@%s", source_p->name,
164               source_p->username, source_p->host);
165 <  set_channel_topic(chptr, parv[2], topic_info, CurrentTime, 0);
165 >  channel_set_topic(chptr, parv[2], topic_info, CurrentTime, 0);
166  
167    sendto_server(source_p, NOCAPS, NOCAPS, ":%s TOPIC %s :%s",
168                  source_p->id, chptr->chname,

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)