Changeset 81ee561 for protocols/yahoo
- Timestamp:
- 2010-03-20T18:03:18Z (15 years ago)
- Branches:
- master
- Children:
- 85693e6
- Parents:
- 3330468 (diff), 0baed0d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols/yahoo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/libyahoo2.c
r3330468 r81ee561 1344 1344 case 301: /* End buddy */ 1345 1345 if (!strcmp(pair->value, "315") && u) { 1346 users = y_list_prepend(users, u); 1346 /* Sometimes user info comes in an odd format with no 1347 "begin buddy" but *with* an "end buddy". Don't add 1348 it twice. */ 1349 if (!y_list_find(users, u)) 1350 users = y_list_prepend(users, u); 1347 1351 u = yd->half_user = NULL; 1348 1352 } -
protocols/yahoo/yahoo.c
r3330468 r81ee561 227 227 yd->current_status = YAHOO_STATUS_CUSTOM; 228 228 } 229 else if( state)229 else if( msg ) 230 230 yd->current_status = YAHOO_STATUS_CUSTOM; 231 231 else
Note: See TracChangeset
for help on using the changeset viewer.