diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2004-04-24 23:26:55 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2004-04-24 23:26:55 +0000 |
commit | 4449eae1558daf1618ae9bcc2f53278bfc3e1fe2 (patch) | |
tree | cd46cc07f1661cd5da58eb5158e67c9ba277185a | |
parent | a6249acfcb65447dcb9759cd4acefdf22263cc7d (diff) |
Bugzilla #550: xauth doesn't unlock .Xauthority on SIGPIPEsco_port_update-baserel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10XORG-6_8_99_1XORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901XORG-6_7_99_2XORG-6_7_99_1XACE-SELINUX-MERGEXORG-6_8-branch
-rw-r--r-- | process.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,4 +1,5 @@ /* $Xorg: process.c,v 1.6 2001/02/09 02:05:38 xorgcvs Exp $ */ +/* $XdotOrg: $ */ /* Copyright 1989, 1998 The Open Group @@ -676,6 +677,9 @@ register_signals(void) #ifdef SIGHUP signal (SIGHUP, catchsig); #endif +#ifdef SIGPIPE + signal (SIGPIPE, catchsig); +#endif return; } |