comparison src/aim.c @ 1409:17e544f8c7fb

[gaim-migrate @ 1419] no more hanging trees. also libyahoo updates. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 16 Jan 2001 02:02:32 +0000
parents 476b24cdfa32
children 3dfd2a83fb5e
comparison
equal deleted inserted replaced
1408:815e3000467e 1409:17e544f8c7fb
195 GList *usr = aim_users; 195 GList *usr = aim_users;
196 GList *tmp = NULL; 196 GList *tmp = NULL;
197 struct aim_user *u; 197 struct aim_user *u;
198 198
199 if (!usr) 199 if (!usr)
200 return g_list_append(NULL, "<unknown>"); 200 return g_list_append(NULL, "<New User>");
201 201
202 while (usr) { 202 while (usr) {
203 u = (struct aim_user *)usr->data; 203 u = (struct aim_user *)usr->data;
204 tmp = g_list_append(tmp, g_strdup(u->username)); 204 tmp = g_list_append(tmp, g_strdup(u->username));
205 usr = usr->next; 205 usr = usr->next;