aboutsummaryrefslogtreecommitdiffstats
path: root/irc_send.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-27 08:30:00 -0400
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-27 08:30:00 -0400
commit83e92bf7487623c10567502936ca727f3a4c104c (patch)
tree35e853f3a2e26582c0dc4938599a85518a41b5b0 /irc_send.c
parentb95932eb5a897fd264f3762493285dd7037dccba (diff)
Topic handling changes.
Diffstat (limited to 'irc_send.c')
-rw-r--r--irc_send.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/irc_send.c b/irc_send.c
index b19d6a0f..f0c3958c 100644
--- a/irc_send.c
+++ b/irc_send.c
@@ -134,7 +134,7 @@ void irc_send_join( irc_channel_t *ic, irc_user_t *iu )
{
irc_write( irc, ":%s MODE %s +%s", irc->root->host, ic->name, ic->mode );
irc_send_names( ic );
- irc_send_topic( ic );
+ irc_send_topic( ic, FALSE );
}
}
@@ -181,10 +181,20 @@ void irc_send_names( irc_channel_t *ic )
irc_send_num( ic->irc, 366, "%s :End of /NAMES list", ic->name );
}
-void irc_send_topic( irc_channel_t *ic )
+void irc_send_topic( irc_channel_t *ic, gboolean topic_change )
{
- if( ic->topic )
+ if( topic_change && ic->topic_who )
+ {
+ irc_write( ic->irc, ":%s TOPIC %s :%s", ic->topic_who,
+ ic->name, ic->topic && *ic->topic ? ic->topic : "" );
+ }
+ else if( ic->topic )
+ {
irc_send_num( ic->irc, 332, "%s :%s", ic->name, ic->topic );
+ if( ic->topic_who )
+ irc_send_num( ic->irc, 333, "%s %s %d",
+ ic->name, ic->topic_who, (int) ic->topic_time );
+ }
else
irc_send_num( ic->irc, 331, "%s :No topic for this channel", ic->name );
}