Mercurial > pidgin
comparison src/protocols/toc/toc.c @ 4705:e34fe984f999
[gaim-migrate @ 5016]
believe it or not, we do work on things besides the buddy list ;-)
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Tue, 11 Mar 2003 18:15:36 +0000 |
| parents | e19f91053ad0 |
| children | 8955054591ea |
comparison
equal
deleted
inserted
replaced
| 4704:56c70997fe5c | 4705:e34fe984f999 |
|---|---|
| 287 mem = g->members; | 287 mem = g->members; |
| 288 while (len > pos && mem) { | 288 while (len > pos && mem) { |
| 289 b = (struct buddy *)mem->data; | 289 b = (struct buddy *)mem->data; |
| 290 if(b->account == account) { | 290 if(b->account == account) { |
| 291 pos += g_snprintf(&s[pos], len - pos, "b %s%s%s\n", b->name, | 291 pos += g_snprintf(&s[pos], len - pos, "b %s%s%s\n", b->name, |
| 292 (show && b->alias[0]) ? ":" : "", | 292 (show && b->alias) ? ":" : "", |
| 293 (show && b->alias[0]) ? b->alias : ""); | 293 (show && b->alias) ? b->alias : ""); |
| 294 } | 294 } |
| 295 mem = mem->next; | 295 mem = mem->next; |
| 296 } | 296 } |
| 297 } | 297 } |
| 298 grp = g_slist_next(grp); | 298 grp = g_slist_next(grp); |
