(trunk gtk) #4791 "Should catch SIGTERM instead of SIGKILL" -- fixed with patch by Matt Krai

This commit is contained in:
Jordan Lee 2012-02-24 19:52:50 +00:00
parent 291cb9f712
commit 252560ddd9
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ on_startup( GApplication * application, gpointer user_data )
struct cbdata * cbdata = user_data;
signal( SIGINT, signal_handler );
signal( SIGKILL, signal_handler );
signal( SIGTERM, signal_handler );
sighandler_cbdata = cbdata;