| 1643 m = g_list_append(m, pam); |
1643 m = g_list_append(m, pam); |
| 1644 |
1644 |
| 1645 return m; |
1645 return m; |
| 1646 } |
1646 } |
| 1647 |
1647 |
| 1648 static int yahoo_send_im(GaimConnection *gc, const char *who, const char *what, int len, GaimImFlags flags) |
1648 static int yahoo_send_im(GaimConnection *gc, const char *who, const char *what, GaimImFlags flags) |
| 1649 { |
1649 { |
| 1650 struct yahoo_data *yd = gc->proto_data; |
1650 struct yahoo_data *yd = gc->proto_data; |
| 1651 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, 0); |
1651 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, 0); |
| 1652 char *msg = yahoo_html_to_codes(what); |
1652 char *msg = yahoo_html_to_codes(what); |
| 1653 |
1653 |