diff options
author | kris <kris@FreeBSD.org> | 1999-05-08 10:22:15 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 1999-05-08 10:22:15 +0000 |
commit | 713dd62834d401cc7b9b394a4b916ab9e5e3d4d5 (patch) | |
tree | 697ce44b4cebcd3432c5b00049fc0a58ac8d3742 /bin/sh/trap.c | |
parent | e45752d185f905fa5c6f91dd4d4622f62c6246f7 (diff) | |
download | FreeBSD-src-713dd62834d401cc7b9b394a4b916ab9e5e3d4d5.zip FreeBSD-src-713dd62834d401cc7b9b394a4b916ab9e5e3d4d5.tar.gz |
Various spelling/formatting changes.
Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
Diffstat (limited to 'bin/sh/trap.c')
-rw-r--r-- | bin/sh/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/trap.c b/bin/sh/trap.c index 429253c..2a6b88a 100644 --- a/bin/sh/trap.c +++ b/bin/sh/trap.c @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)trap.c 8.5 (Berkeley) 6/5/95"; #endif static const char rcsid[] = - "$Id: trap.c,v 1.17 1998/09/10 22:09:11 cracauer Exp $"; + "$Id: trap.c,v 1.18 1999/04/01 13:27:36 cracauer Exp $"; #endif /* not lint */ #include <signal.h> @@ -70,7 +70,7 @@ static const char rcsid[] = #define S_DFL 1 /* default signal handling (SIG_DFL) */ #define S_CATCH 2 /* signal is caught */ #define S_IGN 3 /* signal is ignored (SIG_IGN) */ -#define S_HARD_IGN 4 /* signal is ignored permenantly */ +#define S_HARD_IGN 4 /* signal is ignored permanently */ #define S_RESET 5 /* temporary - to reset a hard ignored sig */ |