ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/src llist.c,1.10,1.11 plugin_api.c,1.13,1.14


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/src llist.c,1.10,1.11 plugin_api.c,1.13,1.14 plugin_api.h,1.7,1.8 status.c,1.60,1.61 tcp_util.h,1.2,1.3
Date: Fri, 21 Mar 2003 06:19:09 -0500

Update of /cvsroot/ayttm/ayttm/src
In directory subversions:/tmp/cvs-serv21842/src

Modified Files:
        llist.c plugin_api.c plugin_api.h status.c tcp_util.h 
Log Message:
remove some warnings, disable icq by default

Index: llist.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/llist.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- llist.c     17 Mar 2003 18:17:08 -0000      1.10
+++ llist.c     21 Mar 2003 11:19:07 -0000      1.11
@@ -115,7 +115,7 @@
 int l_list_length(const LList * list)
 {
        int retval = 0;
-       LList *n = list;
+       const LList *n = list;
 
        for (n = list; n != NULL; n = n->next) {
                retval++;

Index: plugin_api.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/plugin_api.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- plugin_api.c        20 Mar 2003 10:06:40 -0000      1.13
+++ plugin_api.c        21 Mar 2003 11:19:07 -0000      1.14
@@ -67,7 +67,7 @@
        return(ecd);
 }
 
-void *eb_menu_item_set_protocol(void *item, char * protocol)
+void eb_menu_item_set_protocol(void *item, char * protocol)
 {
        menu_item_data *mid = (menu_item_data *)item;
        eb_debug(DBG_CORE, "set prtocol:%s\n",protocol);

Index: plugin_api.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/plugin_api.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- plugin_api.h        20 Mar 2003 10:41:41 -0000      1.7
+++ plugin_api.h        21 Mar 2003 11:19:07 -0000      1.8
@@ -115,7 +115,7 @@
 /* FIXME: Want an eb_add_menu_item_condition function */
 /* tag comes from a call to eb_add_menu_item, returns 0 on success */
 int eb_remove_menu_item(char *menu_name, void *tag);
-void *eb_menu_item_set_protocol(void *item, char * protocol);
+void eb_menu_item_set_protocol(void *item, char * protocol);
 
 /* File */
 typedef enum {

Index: status.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/status.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- status.c    20 Mar 2003 10:41:41 -0000      1.60
+++ status.c    21 Mar 2003 11:19:07 -0000      1.61
@@ -856,7 +856,7 @@
                if (need_tooltip_update) {
                        time(&ea->account_contact->last_status_change);
                        if (ea->account_contact->last_status)
-                               free(ea->account_contact->last_status);
+                               g_free(ea->account_contact->last_status);
                        ea->account_contact->last_status = strdup(c);
                }
                        

Index: tcp_util.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/tcp_util.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tcp_util.h  7 Feb 2003 10:02:45 -0000       1.2
+++ tcp_util.h  21 Mar 2003 11:19:07 -0000      1.3
@@ -46,6 +46,7 @@
 int  ay_socket_new_async(const char * host, int port, ay_socket_callback 
callback, void * callback_data);
 void ay_socket_cancel_async(int tag);
 int  ay_tcp_readline(char * buff, int maxlen, int fd);
+int ay_tcp_writeline(const char *buff, int nbytes, int fd);
 
 #ifdef __cplusplus
 }





reply via email to

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