comparison 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
comparison
equal deleted inserted replaced
1429:865a6ead3258 1430:b4de935f820f
399 "how to get the backtrace, please IM either EWarmenhoven or\n" 399 "how to get the backtrace, please IM either EWarmenhoven or\n"
400 "RobFlynn and they can instruct you).\n"); 400 "RobFlynn and they can instruct you).\n");
401 abort(); 401 abort();
402 break; 402 break;
403 case SIGPIPE: 403 case SIGPIPE:
404 /* should we do something here? */ 404 /* FIXME: we should be checking to see which connection died. maybe add
405 * something to struct prpl to have it check its connections? */
406 break;
405 default: 407 default:
406 gtk_main_quit(); 408 gtk_main_quit();
407 exit(0); 409 exit(0);
408 } 410 }
409 } 411 }