summaryrefslogtreecommitdiff
path: root/trap.c~
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-12-07 09:28:26 -0500
committerChet Ramey <chet.ramey@case.edu>2011-12-07 09:28:26 -0500
commit48ff544772dfa6b8fa3dda69361a5d64a9b0cbcd (patch)
tree6fdd9ddec685a88bd9d1bb4c9089f04134f2652e /trap.c~
parent40c8fbee93dca4d4d43a18d5fb3202fa2db2ae49 (diff)
downloadbash-48ff544772dfa6b8fa3dda69361a5d64a9b0cbcd.tar.gz
commit bash-20080904 snapshot
Diffstat (limited to 'trap.c~')
-rw-r--r--trap.c~25
1 files changed, 12 insertions, 13 deletions
diff --git a/trap.c~ b/trap.c~
index 7dab0d3d..829fa0dc 100644
--- a/trap.c~
+++ b/trap.c~
@@ -1,23 +1,23 @@
/* trap.c -- Not the trap command, but useful functions for manipulating
those objects. The trap command is in builtins/trap.def. */
-/* Copyright (C) 1987-2006 Free Software Foundation, Inc.
+/* Copyright (C) 1987-2008 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
- Bash is free software; you can redistribute it and/or modify it under
- the terms of the GNU General Public License as published by the Free
- Software Foundation; either version 2, or (at your option) any later
- version.
+ Bash is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
- Bash is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- for more details.
+ Bash is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
- You should have received a copy of the GNU General Public License along
- with Bash; see the file COPYING. If not, write to the Free Software
- Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
+ You should have received a copy of the GNU General Public License
+ along with Bash. If not, see <http://www.gnu.org/licenses/>.
+*/
#include "config.h"
@@ -357,7 +357,6 @@ trap_handler (sig)
{
int oerrno;
-itrace("trap_handler: signal %d", sig);
if ((sigmodes[sig] & SIG_TRAPPED) == 0)
{
#if defined (DEBUG)