diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-09-02 08:16:52 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-09-02 08:16:52 +0000 |
commit | cd4f50c136e60f5847fbf5eb5fbd3a696a2e0616 (patch) | |
tree | 7b66b3371e05e49c16aca138111a4b404f38a7b2 /src | |
parent | 767e378c533198355addf36ac968aea631714824 (diff) | |
download | weechat-cd4f50c136e60f5847fbf5eb5fbd3a696a2e0616.zip |
Signal SIGQUIT is now ignored
Diffstat (limited to 'src')
-rw-r--r-- | src/common/weechat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/weechat.c b/src/common/weechat.c index 625ae7eef..b8692da57 100644 --- a/src/common/weechat.c +++ b/src/common/weechat.c @@ -814,6 +814,7 @@ main (int argc, char *argv[]) #endif signal (SIGINT, SIG_IGN); /* ignore SIGINT signal */ + signal (SIGQUIT, SIG_IGN); /* ignore SIGQUIT signal */ signal (SIGSEGV, my_sigsegv); /* crash dump when SIGSEGV is received */ gui_pre_init (&argc, &argv); /* pre-initiliaze interface */ wee_init_vars (); /* initialize some variables */ |