comparison src/aim.c @ 1878:75643b9f4261

[gaim-migrate @ 1888] eh. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 22 May 2001 09:05:21 +0000
parents 73bb4244165f
children ba421d552093
comparison
equal deleted inserted replaced
1877:a333eccaae93 1878:75643b9f4261
157 157
158 /* if there is more than one user of the same name, then fuck them, they just have 158 /* if there is more than one user of the same name, then fuck them, they just have
159 * to use the account editor to sign in the second one */ 159 * to use the account editor to sign in the second one */
160 u = find_user(username, -1); 160 u = find_user(username, -1);
161 if (!u) 161 if (!u)
162 u = new_user(username, PROTO_TOC, OPT_USR_REM_PASS); 162 u = new_user(username, DEFAULT_PROTO, OPT_USR_REM_PASS);
163 g_snprintf(u->password, sizeof u->password, "%s", password); 163 g_snprintf(u->password, sizeof u->password, "%s", password);
164 save_prefs(); 164 save_prefs();
165 serv_login(u); 165 serv_login(u);
166 } 166 }
167 167