Module Name:    src
Committed By:   pooka
Date:           Wed Jul 28 15:11:30 UTC 2010

Modified Files:
        src/tests/fs/nfs/nfsservice/rpcbind: rpcbind.c

Log Message:
Don't ignore SIGHUP here since mountd uses it.  The mountd signal
handler is installed later, so technically this is unnecessary,
but try to be complete.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c
diff -u src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c:1.1 src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c:1.2
--- src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c:1.1	Mon Jul 26 15:53:00 2010
+++ src/tests/fs/nfs/nfsservice/rpcbind/rpcbind.c	Wed Jul 28 15:11:30 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: rpcbind.c,v 1.1 2010/07/26 15:53:00 pooka Exp $	*/
+/*	$NetBSD: rpcbind.c,v 1.2 2010/07/28 15:11:30 pooka Exp $	*/
 
 /*
  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -173,7 +173,7 @@
 	(void) signal(SIGQUIT, terminate);
 	/* ignore others that could get sent */
 	(void) signal(SIGPIPE, SIG_IGN);
-	(void) signal(SIGHUP, SIG_IGN);
+	//(void) signal(SIGHUP, SIG_IGN); used by mountd
 	(void) signal(SIGUSR1, SIG_IGN);
 	(void) signal(SIGUSR2, SIG_IGN);
 #ifdef WARMSTART

Reply via email to