diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-18 08:12:12 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-02-18 08:12:12 +0000 |
commit | 99fd9c5efb1c84d574bb00e8e2a685a610a8ebc4 (patch) | |
tree | 0c16b5423ca628c5d7e7f90269679290ac51f85d /gnu/usr.bin/sendbug | |
parent | a43473f9b1982ba05c6caf04cd38d8c7a00af7ce (diff) |
Ignore SIGINT
Diffstat (limited to 'gnu/usr.bin/sendbug')
-rw-r--r-- | gnu/usr.bin/sendbug/sendbug.sh | 5 |
1 files 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='<how to correct or work around the problem, if known (multiple lines)>' # 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 |