summaryrefslogtreecommitdiff
path: root/wm/windowmaker/patches/patch-ad
blob: cee4bc73edf5a90c7e5b0255f8da3e5472f0876c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$NetBSD: patch-ad,v 1.5 2001/06/29 16:28:51 nra Exp $

--- src/main.c.orig	Tue Apr 10 19:14:42 2001
+++ src/main.c	Fri Jun 29 11:19:34 2001
@@ -28,6 +28,7 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <fcntl.h>
+#include <signal.h>
 
 #include <X11/Xlib.h>
 #include <X11/Xutil.h>
@@ -218,6 +219,12 @@
 {
     char *tmp, *ptr;
     char buf[16];
+    struct sigaction sa;
+
+    sa.sa_handler = SIG_DFL;
+    sigemptyset(&sa.sa_mask);
+    /* sa.sa_mask = 0; */
+    sigaction(SIGPIPE, &sa, NULL);
 
     if (multiHead) {
     	tmp = wmalloc(strlen(DisplayName)+64);