comparison src/util.c @ 4349:0c68d402f59f

[gaim-migrate @ 4614] XML Blist Gaim stores all the buddy lists in one big happy file now. You can order the buddies however you want, and they'll stay ordered that way. We can also store some per-buddy information now, which will be cool. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 19 Jan 2003 22:16:52 +0000
parents 5978e3d53f29
children 5fb47ec9bfe4
comparison
equal deleted inserted replaced
4348:922b66840a51 4349:0c68d402f59f
958 958
959 /* Well, we'd better check to make sure we have at least one 959 /* Well, we'd better check to make sure we have at least one
960 AIM account connected. */ 960 AIM account connected. */
961 while (conn) { 961 while (conn) {
962 gc = conn->data; 962 gc = conn->data;
963 if (gc->protocol == PROTO_TOC) { 963 if (gc->protocol == PROTO_OSCAR && isalpha(gc->username[0])) {
964 break; 964 break;
965 } 965 }
966 conn = conn->next; 966 conn = conn->next;
967 } 967 }
968 968