diff options
-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: xc/programs/xauth/process.c,v 1.3 2004/04/24 23:26:55 alanc Exp $ */ /* 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; } |