From d4596590988bdc6a29f6514534c3ebbf07021912 Mon Sep 17 00:00:00 2001 From: tholo Date: Tue, 18 Feb 1997 08:12:11 +0000 Subject: [PATCH] Ignore SIGINT --- gnu/usr.bin/sendbug/sendbug.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/sendbug/sendbug.sh b/gnu/usr.bin/sendbug/sendbug.sh index a56df27874f..00a3101b7d1 100644 --- a/gnu/usr.bin/sendbug/sendbug.sh +++ b/gnu/usr.bin/sendbug/sendbug.sh @@ -21,7 +21,7 @@ # along with GNU GNATS; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # -# $OpenBSD: sendbug.sh,v 1.3 1996/07/02 15:49:53 tholo Exp $ +# $OpenBSD: sendbug.sh,v 1.4 1997/02/18 08:12:11 tholo Exp $ # The version of this send-pr. VERSION=3.97 @@ -301,7 +301,8 @@ FIX_C='' # Catch some signals. ($xs kludge needed by Sun /bin/sh) xs=0 trap 'rm -f $REF $TEMP; exit $xs' 0 -trap 'echo "$COMMAND: Aborting ..."; rm -f $REF $TEMP; xs=1; exit' 1 2 3 13 15 +trap 'echo "$COMMAND: Aborting ..."; rm -f $REF $TEMP; xs=1; exit' 1 3 13 15 +trap : 2 # If they told us to use a specific file, then do so. if [ -n "$IN_FILE" ]; then -- 2.20.1