Mercurial > pidgin.yaz
changeset 1430:b4de935f820f
[gaim-migrate @ 1440]
shouldn't be quitting on sigpipe, but shouldn't just ignore it either.... sigh.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sat, 27 Jan 2001 06:30:39 +0000 |
parents | 865a6ead3258 |
children | 0137bacd63c8 |
files | src/aim.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/aim.c Fri Jan 26 23:33:17 2001 +0000 +++ b/src/aim.c Sat Jan 27 06:30:39 2001 +0000 @@ -401,7 +401,9 @@ abort(); break; case SIGPIPE: - /* should we do something here? */ + /* FIXME: we should be checking to see which connection died. maybe add + * something to struct prpl to have it check its connections? */ + break; default: gtk_main_quit(); exit(0);