ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/irc irc.c,1.4,1.5


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

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

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

Index: irc.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/irc/irc.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- irc.c       24 Jan 2003 11:44:05 -0000      1.4
+++ irc.c       24 Jan 2003 13:34:41 -0000      1.5
@@ -711,7 +711,7 @@
        else if (!strncmp(split_buff[1], "QUIT", 4))
        {
                /* Someone has left all the channels */
-               GList * node = chat_rooms;
+               LList * node = chat_rooms;
                eb_chat_room * ecr;
                char nick[256];
                char *alpha;
@@ -765,7 +765,7 @@
        else if (!strncmp(split_buff[1], "NICK", 4))
        {
                /* Someone has left the channel */
-               GList * node;
+               LList * node;
                eb_chat_room * ecr;
                char nick[256];
                char tempstring[BUF_LEN];
@@ -1346,7 +1346,7 @@
        eb_account * ea = g_new0(eb_account, 1 );
        irc_account * ia = g_new0(irc_account, 1);
        gchar *temp = NULL;
-       GList * node;
+       LList * node;
        
        ea->protocol_account_data = ia;
        ea->service_id = SERVICE_INFO.protocol_id;
@@ -1443,7 +1443,7 @@
 {
        /* find the proper local account */
        irc_account *ia = (irc_account *) account->protocol_account_data;
-       GList * node;
+       LList * node;
 
        for( node = accounts; node; node = node->next )
        {
@@ -1467,7 +1467,7 @@
 {
        /* find the proper local account */
        irc_account *ia = (irc_account *) account->protocol_account_data;
-       GList * node;
+       LList * node;
 
        for( node = accounts; node; node = node->next )
        {
@@ -1499,7 +1499,7 @@
 
 static eb_local_account * irc_search_for_local_account (char *server)
 {
-       GList *node;
+       LList *node;
        
        for( node = accounts; node; node = node->next )
        {
@@ -1523,7 +1523,7 @@
 {
        eb_account * ea = g_new0(eb_account, 1);
        irc_account * ia = g_new0(irc_account, 1);
-       GList * node;
+       LList * node;
        
        strncpy(ea->handle, account, 254);
        
@@ -1886,7 +1886,7 @@
 
 static eb_chat_room * irc_make_chat_room(gchar * name, eb_local_account * 
account)
 {
-       GList * node;
+       LList * node;
        eb_chat_room * ecr;
        char *chatroom_server = NULL;
        char *alpha = NULL;
@@ -1957,7 +1957,7 @@
        free(invitation);
        if ( ecr )
        {
-               chat_rooms = g_list_append(chat_rooms, ecr);
+               chat_rooms = l_list_append(chat_rooms, ecr);
                //eb_join_chat_room(ecr);
        }
        return;





reply via email to

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