comparison plugins/yay/outgoing.c @ 1845:e739d3dddf4c

[gaim-migrate @ 1855] this is probably bad, huh. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 12 May 2001 09:49:21 +0000
parents 4a47a459cc98
children f7114b4d1f96
comparison
equal deleted inserted replaced
1844:9845deede1e9 1845:e739d3dddf4c
113 113
114 if (!(buf = g_strconcat(user, ",", msg, NULL))) 114 if (!(buf = g_strconcat(user, ",", msg, NULL)))
115 return 0; 115 return 0;
116 116
117 ret = yahoo_write_cmd(session, conn, YAHOO_SERVICE_MESSAGE, 117 ret = yahoo_write_cmd(session, conn, YAHOO_SERVICE_MESSAGE,
118 active_id ? active_id : session->name, buf, 0); 118 active_id ? active_id : session->name, buf, YAHOO_MESSAGE_SEND);
119 g_free(buf); 119 g_free(buf);
120 120
121 return ret; 121 return ret;
122 } 122 }
123 123