| 1516 c = new_conversation(name); |
1516 c = new_conversation(name); |
| 1517 |
1517 |
| 1518 set_convo_gc(c, u->gc); |
1518 set_convo_gc(c, u->gc); |
| 1519 |
1519 |
| 1520 write_to_conv(c, b->message, WFLAG_SEND, NULL, time(NULL), -1); |
1520 write_to_conv(c, b->message, WFLAG_SEND, NULL, time(NULL), -1); |
| 1521 serv_send_im(u->gc, name, b->message, 0); |
1521 serv_send_im(u->gc, name, b->message, -1, 0); |
| 1522 } |
1522 } |
| 1523 } |
1523 } |
| 1524 if (b->options & OPT_POUNCE_COMMAND) { |
1524 if (b->options & OPT_POUNCE_COMMAND) { |
| 1525 int pid = fork(); |
1525 int pid = fork(); |
| 1526 |
1526 |