summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgmont Koblinger <egmont@gmail.com>2015-04-28 22:57:04 +0200
committerEgmont Koblinger <egmont@gmail.com>2015-04-28 22:57:04 +0200
commita8b2ae135e352497301dd5ed7d37c9af08a9e75d (patch)
tree2a4b114e48079a19e4da5e42902b6614f48e5c99
parentd37abbc17afa94d0e0c6e18e0924510c0fe9e3ba (diff)
downloadvte-a8b2ae135e352497301dd5ed7d37c9af08a9e75d.tar.gz
pty: Reset SIGQUIT handler to its default
https://bugzilla.gnome.org/show_bug.cgi?id=748520
-rw-r--r--src/pty.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pty.cc b/src/pty.cc
index b6b6434e..82f77714 100644
--- a/src/pty.cc
+++ b/src/pty.cc
@@ -86,6 +86,7 @@ _vte_pty_reset_signal_handlers(void)
signal(SIGHUP, SIG_DFL);
#endif
signal(SIGINT, SIG_DFL);
+ signal(SIGQUIT, SIG_DFL);
signal(SIGILL, SIG_DFL);
signal(SIGABRT, SIG_DFL);
signal(SIGFPE, SIG_DFL);