diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-11-17 12:19:22 +0000 |
commit | d615f4ca564f838b39bd8b504a3107011d951a03 (patch) | |
tree | d799b77773a040bd9f634696266507c9072dd071 /net-im/icb/files/patch-o-ai | |
parent | Remove do-package target that was running "make package" in (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_2_0'.release/4.2.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) |