Mercurial > pidgin.yaz
comparison libgaim/protocols/irc/irc.c @ 14622:f8beee12ade9
[gaim-migrate @ 17351]
typo. Thanks ka-hing.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 25 Sep 2006 21:14:24 +0000 |
parents | bf1f941575be |
children | 118fd0dc5b6e |
comparison
equal
deleted
inserted
replaced
14621:bf1f941575be | 14622:f8beee12ade9 |
---|---|
142 int irc_send(struct irc_conn *irc, const char *buf) | 142 int irc_send(struct irc_conn *irc, const char *buf) |
143 { | 143 { |
144 int ret, buflen; | 144 int ret, buflen; |
145 char *tosend= g_strdup(buf); | 145 char *tosend= g_strdup(buf); |
146 | 146 |
147 gaim_signal_emit(_irc_plugin, "irc-sending_text", gaim_account_get_connection(irc->account), &tosend); | 147 gaim_signal_emit(_irc_plugin, "irc-sending-text", gaim_account_get_connection(irc->account), &tosend); |
148 if (tosend == NULL) | 148 if (tosend == NULL) |
149 return 0; | 149 return 0; |
150 | 150 |
151 buflen = strlen(tosend); | 151 buflen = strlen(tosend); |
152 | 152 |