summaryrefslogtreecommitdiff
path: root/libexec/login_reject
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-12-06 05:37:05 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-12-06 05:37:05 +0000
commit356637a543a91c28362353168555fdfe110d4bf6 (patch)
tree46d0fd327ae800eb18c864b71276bc3c86af616f /libexec/login_reject
parent7379aa77a00dba03363eb1419cf4ae4e335d830f (diff)
Do not set handler for SIGINT and SIGQUIT to SIG_IGN since it prevents
getpass()/readpassphrase() from being able to restore the tty mode on keyboard interrupt. Along with the recent readpassphrase.c commit this means that if you ^C things that use login scripts (like su(1)) with a non-CBREAK shell your tty mode will be restored nicely. TODO: The various login scripts need to install handlers to avoid leaving turd files or otherwise ending in a bad state. It would also be nice to send BI_REJECT to the back channel.
Diffstat (limited to 'libexec/login_reject')
-rw-r--r--libexec/login_reject/login_reject.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libexec/login_reject/login_reject.c b/libexec/login_reject/login_reject.c
index 92d8bfe909f..b2655f6cfc1 100644
--- a/libexec/login_reject/login_reject.c
+++ b/libexec/login_reject/login_reject.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: login_reject.c,v 1.2 2001/10/24 13:06:35 mpech Exp $ */
+/* $OpenBSD: login_reject.c,v 1.3 2001/12/06 05:37:04 millert Exp $ */
/*-
* Copyright (c) 1995 Berkeley Software Design, Inc. All rights reserved.
@@ -67,8 +67,6 @@ main(argc, argv)
rl.rlim_max = 0;
(void)setrlimit(RLIMIT_CORE, &rl);
- (void)signal(SIGQUIT, SIG_IGN);
- (void)signal(SIGINT, SIG_IGN);
(void)setpriority(PRIO_PROCESS, 0, 0);
openlog("login", LOG_ODELAY, LOG_AUTH);