diff src/aim.c @ 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 3dfd2a83fb5e
children 4c62ead808a2
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);