ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/modules/aim-toc aim-toc.c,1.10,1.11


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/aim-toc aim-toc.c,1.10,1.11
Date: Fri, 24 Jan 2003 08:34:43 -0500

Update of /cvsroot/ayttm/ayttm/modules/aim-toc
In directory subversions:/tmp/cvs-serv13526/modules/aim-toc

Modified Files:
        aim-toc.c 
Log Message:
changed GList to LList in many places.  please test.

Index: aim-toc.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/aim-toc/aim-toc.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- aim-toc.c   24 Jan 2003 11:44:04 -0000      1.10
+++ aim-toc.c   24 Jan 2003 13:34:41 -0000      1.11
@@ -178,7 +178,7 @@
 
 /* here is the list of locally stored buddies */
 
-static GList * aim_buddies;
+static LList * aim_buddies;
 
 /*     There are no prefs for AIM-TOC at the moment.
 static input_list * aim_prefs = NULL;
@@ -207,7 +207,7 @@
 
 static eb_local_account * aim_find_local_account_by_conn(toc_conn * conn)
 {
-       GList * node;
+       LList * node;
        for( node = accounts; node; node = node->next )
        {
                eb_local_account * ela = (eb_local_account *)node->data;
@@ -382,7 +382,7 @@
        chat_room->fellows = NULL;
        chat_room->protocol_local_chat_room_data = NULL; /* not needed for AIM 
*/
        
-       chat_rooms = g_list_append(chat_rooms, chat_room );
+       chat_rooms = l_list_append(chat_rooms, chat_room );
        chat_room->chat_room_account =  aim_find_local_account_by_conn(conn);
 
        invite_dialog( ela, sender, name, strdup(id) );
@@ -518,8 +518,8 @@
                ea->icon_handler = -1;
                ea->status_handler = -1;
        
-               aim_buddies = g_list_append(aim_buddies, handle);
-               c->accounts = g_list_append(c->accounts, ea);
+               aim_buddies = l_list_append(aim_buddies, handle);
+               c->accounts = l_list_append(c->accounts, ea);
                ea->account_contact = c;
 #if 0
                add_account(handle, ea);
@@ -661,7 +661,7 @@
 
 static void eb_aim_del_user( eb_account * account )
 {
-       GList * node;
+       LList * node;
        assert( eb_services[account->service_id].protocol_id == 
SERVICE_INFO.protocol_id );
        for( node = accounts; node; node=node->next )
        {
@@ -677,10 +677,10 @@
 
 static void eb_aim_add_user( eb_account * account )
 {
-       GList * node;
+       LList * node;
 
        assert( eb_services[account->service_id].protocol_id == 
SERVICE_INFO.protocol_id );
-       aim_buddies = g_list_append(aim_buddies, account->handle);
+       aim_buddies = l_list_append(aim_buddies, account->handle);
 
        for( node = accounts; node; node=node->next )
        {
@@ -745,7 +745,7 @@
        is_setting_state = 0;
        toc_add_buddy(alad->conn,account->handle,
                        "Unknown");
-       aim_buddies = g_list_append(aim_buddies, account->handle);
+       aim_buddies = l_list_append(aim_buddies, account->handle);
                                                                  
 }
 
@@ -760,7 +760,7 @@
 
 static void eb_aim_logout( eb_local_account * account )
 {
-       GList *l;
+       LList *l;
        struct eb_aim_local_account_data * alad;
        alad = (struct eb_aim_local_account_data 
*)account->protocol_local_account_data;
        eb_debug(DBG_TOC, "eb_aim_logout %d %d\n", alad->conn->fd, 
alad->conn->seq_num );





reply via email to

[Prev in Thread] Current Thread [Next in Thread]