Changeset 440ce01 for aim.c


Ignore:
Timestamp:
May 31, 2003, 4:17:24 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
0ff8fb57
Parents:
5e53c4a
Message:
added owl_prototypes.h to repository
fix outgoing aim message to send the real text
display sender and recipient of owl messages
File:
1 edited

Legend:

Unmodified
Added
Removed
  • aim.c

    rd09e5a1 r440ce01  
    167167int owl_aim_send_im(char *to, char *msg)
    168168{
    169   aim_send_im(owl_global_get_aimsess(&g), to, AIM_IMFLAGS_ACK, "msg");
     169  aim_send_im(owl_global_get_aimsess(&g), to, AIM_IMFLAGS_ACK, msg);
    170170}
    171171
     
    12411241  /* create a message, and put it on the message queue */
    12421242  m=owl_malloc(sizeof(owl_message));
    1243   owl_message_create_aim(m, userinfo->sn, realmsg);
     1243  owl_message_create_aim(m, userinfo->sn, owl_global_get_aim_screenname(&g), realmsg);
    12441244  owl_message_set_direction_in(m);
    12451245  owl_global_messagequeue_addmsg(&g, m);
Note: See TracChangeset for help on using the changeset viewer.