diff options
author | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 16:11:36 -0800 |
---|---|---|
committer | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 16:11:36 -0800 |
commit | 23962fab57727030a1d2d01f0c4b43a9075681c1 (patch) | |
tree | 1e660fdf50e1bdaf0e1543f6aaf38df1b8ae5914 /debian/patches-applied/misc_conv_allow_sigint.patch | |
parent | cccf6eb73fb02c8c7cf93e18b49ce1d9e697052a (diff) | |
parent | 3df8bf43bb3e239563ebabab30836279d0d1e1f2 (diff) | |
download | pam-23962fab57727030a1d2d01f0c4b43a9075681c1.tar.gz pam-23962fab57727030a1d2d01f0c4b43a9075681c1.tar.bz2 pam-23962fab57727030a1d2d01f0c4b43a9075681c1.zip |
merge
Diffstat (limited to 'debian/patches-applied/misc_conv_allow_sigint.patch')
-rw-r--r-- | debian/patches-applied/misc_conv_allow_sigint.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/debian/patches-applied/misc_conv_allow_sigint.patch b/debian/patches-applied/misc_conv_allow_sigint.patch deleted file mode 100644 index 75ffe8b7..00000000 --- a/debian/patches-applied/misc_conv_allow_sigint.patch +++ /dev/null @@ -1,28 +0,0 @@ -Patch for Debian bug #1708 - -Don't block SIGINT in misc_conv, it's perfectly valid to allow the user -to interrupt at a prompt if the application hasn't otherwise blocked the -signal. - -Authors: Steve Langasek <vorlon@debian.org> - -Upstream status: committed to CVS - -Index: pam/Linux-PAM/libpam_misc/misc_conv.c -=================================================================== ---- pam.orig/Linux-PAM/libpam_misc/misc_conv.c -+++ pam/Linux-PAM/libpam_misc/misc_conv.c -@@ -150,12 +150,11 @@ - have_term = 1; - - /* -- * We make a simple attempt to block TTY signals from terminating -+ * We make a simple attempt to block TTY signals from suspending - * the conversation without giving PAM a chance to clean up. - */ - - sigemptyset(&nset); -- sigaddset(&nset, SIGINT); - sigaddset(&nset, SIGTSTP); - (void) sigprocmask(SIG_BLOCK, &nset, &oset); - |