Mercurial > pidgin
comparison src/server.c @ 970:9eb07b383df4
[gaim-migrate @ 980]
Bleat.
committer: Tailor Script <tailor@pidgin.im>
| author | Rob Flynn <gaim@robflynn.com> |
|---|---|
| date | Wed, 11 Oct 2000 00:31:15 +0000 |
| parents | 2cd7b73e2c9a |
| children | 2e905413b17f |
comparison
equal
deleted
inserted
replaced
| 969:eb5a82d64ce5 | 970:9eb07b383df4 |
|---|---|
| 140 void serv_send_im(char *name, char *message, int away) | 140 void serv_send_im(char *name, char *message, int away) |
| 141 { | 141 { |
| 142 struct conversation *cnv = find_conversation(name); | 142 struct conversation *cnv = find_conversation(name); |
| 143 if (cnv && cnv->is_direct) { | 143 if (cnv && cnv->is_direct) { |
| 144 if (cnv->gc->protocol == PROTO_OSCAR) { | 144 if (cnv->gc->protocol == PROTO_OSCAR) { |
| 145 sprintf(debug_buff, "Sending DirectIM to %s\n", name); | 145 debug_printf("Sending DirectIM to %s\n", name); |
| 146 debug_print(debug_buff); | |
| 147 aim_send_im_direct(cnv->gc->oscar_sess, cnv->conn, message); | 146 aim_send_im_direct(cnv->gc->oscar_sess, cnv->conn, message); |
| 148 } else { | 147 } else { |
| 149 /* Direct IM TOC FIXME */ | 148 /* Direct IM TOC FIXME */ |
| 150 } | 149 } |
| 151 } else { | 150 } else { |
