ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.37,1.38


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.37,1.38
Date: Fri, 31 Jan 2003 08:30:44 -0500

Update of /cvsroot/ayttm/ayttm/modules/yahoo2
In directory subversions:/tmp/cvs-serv15650/modules/yahoo2

Modified Files:
        yahoo.c 
Log Message:
make some service args const

Index: yahoo.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/yahoo2/yahoo.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- yahoo.c     31 Jan 2003 07:22:35 -0000      1.37
+++ yahoo.c     31 Jan 2003 13:30:42 -0000      1.38
@@ -394,7 +394,7 @@
 static void eb_yahoo_add_user(eb_account * ea);
 static void eb_yahoo_login_with_state(eb_local_account * ela, int login_mode);
 static void eb_yahoo_logout(eb_local_account * ela);
-static eb_account *eb_yahoo_new_account(char * account);
+static eb_account *eb_yahoo_new_account(const char * account);
 
 
 static int eb_yahoo_ping_timeout_callback(gpointer data)
@@ -1857,9 +1857,8 @@
                yahoo_set_away(ylad->id, yahoo_state, NULL, 1);
 }
 
-static void eb_yahoo_set_buddy_nick(
-               eb_yahoo_local_account_data *ylad, 
-               struct yahoo_buddy * bud, char * nick)
+static void eb_yahoo_set_buddy_nick(eb_yahoo_local_account_data *ylad, 
+               struct yahoo_buddy * bud, const char * nick)
 {
        struct yab * yab;
        char * tmp;
@@ -1898,7 +1897,7 @@
        free(yab);
 }
 
-static void eb_yahoo_change_user_name(eb_account * account, char * name)
+static void eb_yahoo_change_user_name(eb_account * account, const char * name)
 {
        eb_local_account * ela;
        eb_yahoo_local_account_data *ylad;
@@ -2047,7 +2046,7 @@
        yahoo_get_list(ylad->id);
 }
 
-static void eb_yahoo_unignore_user(eb_account * ea, char *new_group)
+static void eb_yahoo_unignore_user(eb_account * ea, const char *new_group)
 {
        eb_local_account *ela;
        eb_yahoo_local_account_data *ylad;
@@ -2077,7 +2076,7 @@
        }
 }
 
-static void eb_yahoo_change_group(eb_account * ea, char *new_group)
+static void eb_yahoo_change_group(eb_account * ea, const char *new_group)
 {
        LList *node;
 
@@ -2099,7 +2098,7 @@
        }
 }
 
-static void eb_yahoo_rename_group(char *old_group, char *new_group)
+static void eb_yahoo_rename_group(const char *old_group, const char *new_group)
 {
        LList *node;
 
@@ -2120,7 +2119,7 @@
        }
 }
 
-static eb_account *eb_yahoo_new_account(char * account)
+static eb_account *eb_yahoo_new_account(const char * account)
 {
        eb_account *acct = g_new0(eb_account, 1);
        eb_yahoo_account_data *yad = g_new0(eb_yahoo_account_data, 1);





reply via email to

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