| 1435 triple = g_strsplit(buff, ",", 3); |
1435 triple = g_strsplit(buff, ",", 3); |
| 1436 if (triple[0] && triple[1]) { |
1436 if (triple[0] && triple[1]) { |
| 1437 char *tmp = g_strdup_printf("%s", zephyr->username); |
1437 char *tmp = g_strdup_printf("%s", zephyr->username); |
| 1438 char *atptr; |
1438 char *atptr; |
| 1439 |
1439 |
| 1440 z_class = triple[0]; |
|
| 1441 z_instance = triple[1]; |
1440 z_instance = triple[1]; |
| 1442 if (triple[2] == NULL) { |
1441 if (triple[2] == NULL) { |
| 1443 recip = g_malloc0(1); |
1442 recip = g_malloc0(1); |
| 1444 } else if (!g_ascii_strcasecmp(triple[2], "%me%")) { |
1443 } else if (!g_ascii_strcasecmp(triple[2], "%me%")) { |
| 1445 recip = g_strdup_printf("%s", zephyr->username); |
1444 recip = g_strdup_printf("%s", zephyr->username); |