diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-03-30 22:40:45 -0700 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-03-30 22:40:45 -0700 | 
| commit | 0da65d5fb37691ed4d31f7ab4058732f1440db6b (patch) | |
| tree | a4904e65af761a4503bbc8d4a117d9a0a0ed42f8 /protocols/oscar/im.c | |
| parent | fa29d09342c79b886efacee4cfc3078be5f5a722 (diff) | |
s/gaim_connection/im_connection/ and some other minor API changes. The rest
will come tomorrow. It compiles, I'll leave the real testing up to someone
else. ;-)
Diffstat (limited to 'protocols/oscar/im.c')
| -rw-r--r-- | protocols/oscar/im.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/protocols/oscar/im.c b/protocols/oscar/im.c index 7cccabc7..bc2c2abe 100644 --- a/protocols/oscar/im.c +++ b/protocols/oscar/im.c @@ -1416,7 +1416,7 @@ static void incomingim_ch2_icqserverrelay(aim_session_t *sess, aim_module_t *mod  	guint8 msgtype, msgflags;      guint8 *plugin;      int i = 0, tmp = 0; -    struct gaim_connection *gc = sess->aux_data; +    struct im_connection *ic = sess->aux_data;      /* at the moment we just can deal with requests, not with cancel or accept */      if (args->status != 0) return; @@ -1468,7 +1468,7 @@ static void incomingim_ch2_icqserverrelay(aim_session_t *sess, aim_module_t *mod              case AIM_MTYPE_AUTOFFC:  	    case 0x9c:	/* ICQ 5 seems to send this */                  aim_send_im_ch2_statusmessage(sess, userinfo->sn, args->cookie, -                        gc->away ? gc->away : "", sess->aim_icq_state, dc); +                        ic->away ? ic->away : "", sess->aim_icq_state, dc);                  break;          } | 
