comparison src/account.c @ 7263:412163e23000

[gaim-migrate @ 7840] this should help us track something down, or something committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 14 Oct 2003 17:12:01 +0000
parents 1930e3d00ecd
children 4963abdebd29
comparison
equal deleted inserted replaced
7262:85fcaff1505d 7263:412163e23000
1193 g_markup_parse_context_free(context); 1193 g_markup_parse_context_free(context);
1194 g_free(contents); 1194 g_free(contents);
1195 g_free(filename); 1195 g_free(filename);
1196 accounts_loaded = TRUE; 1196 accounts_loaded = TRUE;
1197 1197
1198 return FALSE; 1198 return TRUE; /* we return TRUE so .gaimrc doesn't load */
1199 } 1199 }
1200 1200
1201 if (!g_markup_parse_context_end_parse(context, NULL)) { 1201 if (!g_markup_parse_context_end_parse(context, NULL)) {
1202 gaim_debug(GAIM_DEBUG_ERROR, "accounts", "Error parsing %s\n", 1202 gaim_debug(GAIM_DEBUG_ERROR, "accounts", "Error parsing %s\n",
1203 filename); 1203 filename);
1204 g_markup_parse_context_free(context); 1204 g_markup_parse_context_free(context);
1205 g_free(contents); 1205 g_free(contents);
1206 g_free(filename); 1206 g_free(filename);
1207 accounts_loaded = TRUE; 1207 accounts_loaded = TRUE;
1208 1208
1209 return FALSE; 1209 return TRUE; /* we return TRUE so .gaimrc doesn't load */
1210 } 1210 }
1211 1211
1212 g_markup_parse_context_free(context); 1212 g_markup_parse_context_free(context);
1213 g_free(contents); 1213 g_free(contents);
1214 g_free(filename); 1214 g_free(filename);