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/service.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/service.c')
-rw-r--r-- | protocols/oscar/service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/oscar/service.c b/protocols/oscar/service.c index d55e0987..2a3dd1fb 100644 --- a/protocols/oscar/service.c +++ b/protocols/oscar/service.c @@ -731,11 +731,11 @@ int aim_setextstatus(aim_session_t *sess, aim_conn_t *conn, guint32 status) aim_tlvlist_t *tl = NULL; guint32 data; int tlvlen; - struct gaim_connection *gc = sess ? sess->aux_data : NULL; + struct im_connection *ic = sess ? sess->aux_data : NULL; data = AIM_ICQ_STATE_HIDEIP | status; /* yay for error checking ;^) */ - if (gc && set_getbool(&gc->acc->set, "web_aware")) + if (ic && set_getbool(&ic->acc->set, "web_aware")) data |= AIM_ICQ_STATE_WEBAWARE; tlvlen = aim_addtlvtochain32(&tl, 0x0006, data); |