comparison plugins/msn/msn.c @ 1568:5a8c66de56b7

[gaim-migrate @ 1578] la committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Wed, 14 Mar 2001 06:31:01 +0000
parents 0357164dffd0
children 446536be85dd
comparison
equal deleted inserted replaced
1567:0357164dffd0 1568:5a8c66de56b7
137 { 137 {
138 char **res; 138 char **res;
139 139
140 res = g_strsplit(buf, " ", 0); 140 res = g_strsplit(buf, " ", 0);
141 141
142 /* If we have zero buddies, abort */
143 if (atoi(res[5]) == 0)
144 {
145 g_strfreev(res);
146 return;
147 }
148
142 /* First, let's check the list type */ 149 /* First, let's check the list type */
143
144 if (!strcmp("FL", res[2])) 150 if (!strcmp("FL", res[2]))
145 { 151 {
146 /* We're dealing with a forward list. Add them 152 /* We're dealing with a forward list. Add them
147 * to our buddylist and continue along our 153 * to our buddylist and continue along our
148 * merry little way */ 154 * merry little way */