ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/server.c
(Generate patch)

Comparing ircd-hybrid-8/src/s_serv.c (file contents):
Revision 1196 by michael, Sun Aug 21 10:09:23 2011 UTC vs.
Revision 1203 by michael, Tue Aug 23 20:06:08 2011 UTC

# Line 1499 | Line 1499 | send_tb(struct Client *client_p, struct
1499        sendto_one(client_p, ":%s TBURST %lu %s %lu %s :%s",
1500                   me.name, (unsigned long)chptr->channelts, chptr->chname,
1501                   (unsigned long)chptr->topic_time,
1502 <                 chptr->topic_info ? chptr->topic_info : "",
1503 <                 chptr->topic ? chptr->topic : "");
1502 >                 chptr->topic_info,
1503 >                 chptr->topic);
1504      else if (IsCapable(client_p, CAP_TB))
1505      {
1506        if (ConfigChannel.burst_topicwho)
# Line 1508 | Line 1508 | send_tb(struct Client *client_p, struct
1508          sendto_one(client_p, ":%s TB %s %lu %s :%s",
1509                     me.name, chptr->chname,
1510                     (unsigned long)chptr->topic_time,
1511 <                   chptr->topic_info, chptr->topic ? chptr->topic : "");
1511 >                   chptr->topic_info, chptr->topic);
1512        }
1513        else
1514        {
1515          sendto_one(client_p, ":%s TB %s %lu :%s",
1516                     me.name, chptr->chname,
1517                     (unsigned long)chptr->topic_time,
1518 <                   chptr->topic ? chptr->topic : "");
1518 >                   chptr->topic);
1519        }
1520      }
1521    }

Diff Legend

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