| 386 } else if(*cur == '+') { |
386 } else if(*cur == '+') { |
| 387 f = GAIM_CBFLAGS_VOICE; |
387 f = GAIM_CBFLAGS_VOICE; |
| 388 cur++; |
388 cur++; |
| 389 } |
389 } |
| 390 tmp = g_strndup(cur, end - cur); |
390 tmp = g_strndup(cur, end - cur); |
| 391 users = g_list_append(users, tmp); |
391 users = g_list_prepend(users, tmp); |
| 392 flags = g_list_append(flags, GINT_TO_POINTER(f)); |
392 flags = g_list_prepend(flags, GINT_TO_POINTER(f)); |
| 393 cur = end; |
393 cur = end; |
| 394 if (*cur) |
394 if (*cur) |
| 395 cur++; |
395 cur++; |
| 396 } |
396 } |
| 397 |
397 |