Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv3902
Modified Files:
multi.c multi.h
Log Message:
this was evil
Index: multi.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/multi.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -d -r1.81 -r1.82
--- multi.c 2001/09/28 07:46:36 1.81
+++ multi.c 2001/09/30 19:48:44 1.82
@@ -107,25 +107,6 @@
#endif
}
-struct gaim_connection *find_gaim_conn_by_name(char *name)
-{
- char *who = g_strdup(normalize(name));
- GSList *c = connections;
- struct gaim_connection *g = NULL;
-
- while (c) {
- g = (struct gaim_connection *)c->data;
- if (!strcmp(normalize(g->username), who)) {
- g_free(who);
- return g;
- }
- c = c->next;
- }
-
- g_free(who);
- return NULL;
-}
-
static void delete_acctedit(GtkWidget *w, gpointer d)
{
if (acctedit) {
Index: multi.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/multi.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- multi.h 2001/09/09 11:33:07 1.31
+++ multi.h 2001/09/30 19:48:44 1.32
@@ -107,8 +107,6 @@
struct gaim_connection *new_gaim_conn(struct aim_user *);
void destroy_gaim_conn(struct gaim_connection *);
-struct gaim_connection *find_gaim_conn_by_name(char *);
-
void account_editor(GtkWidget *, GtkWidget *);
void regenerate_user_list();
|