# HG changeset patch # User Eric Warmenhoven # Date 980577039 0 # Node ID b4de935f820fd85c69d879864a0cf491e73d9d78 # Parent 865a6ead3258d4319f1b9672685aef416b8eae6a [gaim-migrate @ 1440] shouldn't be quitting on sigpipe, but shouldn't just ignore it either.... sigh. committer: Tailor Script diff -r 865a6ead3258 -r b4de935f820f src/aim.c --- 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);