diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
commit | 70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch) | |
tree | 14c35099cfb4f4257c5e0b8e589d530fcb829468 /net-im/icb/files/patch-o-ai | |
parent | Fix typo. (ghostscript55htff -> ghostscript55httf) (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Diffstat (limited to 'net-im/icb/files/patch-o-ai')
-rw-r--r-- | net-im/icb/files/patch-o-ai | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/net-im/icb/files/patch-o-ai b/net-im/icb/files/patch-o-ai deleted file mode 100644 index 1ac66091909b..000000000000 --- a/net-im/icb/files/patch-o-ai +++ /dev/null @@ -1,67 +0,0 @@ -*** icb/signals.c.orig Wed May 6 18:55:15 1998 ---- icb/signals.c Wed May 6 18:55:55 1998 -*************** -*** 22,35 **** - /* sighandler askquit(), suspend(), icbexit(); */ - - /* exit on a hangup or terminate signal */ -! signal(SIGHUP, icbexit); -! signal(SIGTERM, icbexit); - - /* on an interrupt, verify the user wants to quit */ -! signal(SIGINT, askquit); - - /* suspend on a stop signal */ -! signal(SIGTSTP, suspend); - } - - ---- 22,35 ---- - /* sighandler askquit(), suspend(), icbexit(); */ - - /* exit on a hangup or terminate signal */ -! signal(SIGHUP, (void *)icbexit); -! signal(SIGTERM, (void *)icbexit); - - /* on an interrupt, verify the user wants to quit */ -! signal(SIGINT, (void *)askquit); - - /* suspend on a stop signal */ -! signal(SIGTSTP, (void *)suspend); - } - - -*************** -*** 45,51 **** - sigsetmask(sigblock(0) &~ mask(SIGTSTP)); - kill(0, SIGTSTP); - sigblock(mask(SIGTSTP)); -! signal(SIGTSTP, suspend); - icbterm(); - continued = 1; - } ---- 45,51 ---- - sigsetmask(sigblock(0) &~ mask(SIGTSTP)); - kill(0, SIGTSTP); - sigblock(mask(SIGTSTP)); -! signal(SIGTSTP, (void *)suspend); - icbterm(); - continued = 1; - } -*************** -*** 73,79 **** - if (c == 'Y' || c == 'y') - icbexit(); - -! signal(SIGINT, askquit); - continued = 1; - - if (oem) ---- 73,79 ---- - if (c == 'Y' || c == 'y') - icbexit(); - -! signal(SIGINT, (void *)askquit); - continued = 1; - - if (oem) |