diff src/protocols/oscar/oscar.c @ 6350:34c07f5f34a0

[gaim-migrate @ 6849] -Compile warning fixes from The Man (Paco-Paco) -2 memleak fixes from me. One of them leaked the size of a chat message when either sending or receiving, I forgot which (my bad!) -Hopefully make AIM correctly refetch your buddy list when AOL doesn't send it to you the first time -Maybe something else -Chocolate -Vanilla -Strawberry -Napoleon committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 31 Jul 2003 23:21:36 +0000
parents 96196cfb132e
children 8f94cce8faa5
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Thu Jul 31 23:08:54 2003 +0000
+++ b/src/protocols/oscar/oscar.c	Thu Jul 31 23:21:36 2003 +0000
@@ -3732,7 +3732,7 @@
 #ifndef NOSSI
 	gaim_debug(GAIM_DEBUG_INFO, "oscar", "ssi: requesting ssi list\n");
 	aim_ssi_reqrights(sess);
-	aim_ssi_reqdata(sess, sess->ssi.timestamp, sess->ssi.numitems);
+	aim_ssi_reqdata(sess);
 #endif
 
 	aim_bos_reqlocaterights(sess, fr->conn);
@@ -4750,7 +4750,7 @@
 
 static gboolean gaim_ssi_rerequestdata(gpointer data) {
 	aim_session_t *sess = data;
-	aim_ssi_reqdata(sess, sess->ssi.timestamp, sess->ssi.numitems);
+	aim_ssi_reqdata(sess);
 	return FALSE;
 }