comparison src/protocols/irc/irc.c @ 2273:0b5c3338fa3d

[gaim-migrate @ 2283] One of the girls on the floor of my sister's dorm lost both her parents when their plane was hijacked and crashed into the World Trade Center. my girlfriend's boss's sister-in-law's brother died when the building collapsed. my parents flew to atlanta on monday; they're safe but currently stranded there. they had planned on flying to Raleigh, NC today but now are just hoping to be able to fly home soon. how did this happen? committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 12 Sep 2001 21:29:32 +0000
parents 8c4ff1a368bd
children 38e156136896
comparison
equal deleted inserted replaced
2272:4ecc9a9a75d8 2273:0b5c3338fa3d
681 char **res; 681 char **res;
682 682
683 res = g_strsplit(buf, " ", 5); 683 res = g_strsplit(buf, " ", 5);
684 684
685 if (!strcmp(res[1], "301")) 685 if (!strcmp(res[1], "301"))
686 serv_got_im(gc, res[3], res[4] + 1, 1, time((time_t) NULL)); 686 serv_got_im(gc, res[3], res[4] + 1, IM_FLAG_AWAY, time((time_t) NULL));
687 687
688 g_strfreev(res); 688 g_strfreev(res);
689 return; 689 return;
690 } 690 }
691 691