src/protocols/irc/cmds.c

changeset 10564
1ee5ae99711d
parent 10246
aa5bff72f94c
child 10609
170a5af61448
equal deleted inserted replaced
10563:7ae2c5fbf43b 10564:1ee5ae99711d
425 g_free(buf); 425 g_free(buf);
426 426
427 return 0; 427 return 0;
428 } 428 }
429 429
430 int irc_cmd_time(struct irc_conn *irc, const char *cmd, const char *target, const char **args)
431 {
432 char *buf;
433
434 buf = irc_format(irc, "v", "TIME");
435 irc_send(irc, buf);
436 g_free(buf);
437
438 return 0;
439 }
440
430 int irc_cmd_topic(struct irc_conn *irc, const char *cmd, const char *target, const char **args) 441 int irc_cmd_topic(struct irc_conn *irc, const char *cmd, const char *target, const char **args)
431 { 442 {
432 char *buf; 443 char *buf;
433 const char *topic; 444 const char *topic;
434 GaimConversation *convo; 445 GaimConversation *convo;

mercurial