diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-09 00:06:46 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-11-09 00:06:46 +0100 |
commit | 68b50b5f367de68ca334bb83bf200a3406990410 (patch) | |
tree | fa9edd433bd9e5b0592d684444d47a3218281339 /protocols/oscar/snac.c | |
parent | 2095c5749a1024e15a1151db73acd9cf93c9b0cd (diff) | |
parent | 9c62a7cd418e836664aeee7035a39278687f3a50 (diff) |
QUIT now works before logging in too
Diffstat (limited to 'protocols/oscar/snac.c')
-rw-r--r-- | protocols/oscar/snac.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/oscar/snac.c b/protocols/oscar/snac.c index e2bac179..8a75b2a0 100644 --- a/protocols/oscar/snac.c +++ b/protocols/oscar/snac.c @@ -14,6 +14,8 @@ #include <aim.h> +static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac); + /* * Called from aim_session_init() to initialize the hash. */ @@ -50,7 +52,7 @@ aim_snacid_t aim_cachesnac(aim_session_t *sess, const guint16 family, const guin * Clones the passed snac structure and caches it in the * list/hash. */ -aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac) +static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac) { aim_snac_t *snac; int index; |