summaryrefslogtreecommitdiff
path: root/debian/patches-applied
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2008-07-28 11:49:20 -0700
committerSteve Langasek <steve.langasek@ubuntu.com>2019-01-03 17:28:18 -0800
commit50e1446f85c6ac1332a18864f3641b51c7ce84e5 (patch)
tree146d616216e4120d31e9284eb0488388f7be418b /debian/patches-applied
parenta8c1a88fbf005ff789c5e3f660f4b9fa7d053efd (diff)
drop the patch to do NIS+ auth in-process, the uid changing is better handled
by a subprocess.
Diffstat (limited to 'debian/patches-applied')
-rw-r--r--debian/patches-applied/pam_unix_no_helper_for_nis+.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/patches-applied/pam_unix_no_helper_for_nis+.patch b/debian/patches-applied/pam_unix_no_helper_for_nis+.patch
deleted file mode 100644
index 1742034c..00000000
--- a/debian/patches-applied/pam_unix_no_helper_for_nis+.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Don't force use of the helper for account verification with NIS+; the
-previous code already works robustly for any non-threaded caller, and
-will fall back to use of the helper anyway.
-
-Authors: Steve Langasek <vorlon@debian.org>
-
-Upstream status: to be discussed
-
-Index: pam.deb/modules/pam_unix/passverify.c
-===================================================================
---- pam.deb.orig/modules/pam_unix/passverify.c
-+++ pam.deb/modules/pam_unix/passverify.c
-@@ -166,7 +166,6 @@
- if (*pwd != NULL) {
- if (strcmp((*pwd)->pw_passwd, "*NP*") == 0)
- { /* NIS+ */
--#ifdef HELPER_COMPILE
- uid_t save_euid, save_uid;
-
- save_euid = geteuid();
-@@ -194,10 +193,6 @@
-
- if (*spwdent == NULL || (*spwdent)->sp_pwdp == NULL)
- return PAM_AUTHINFO_UNAVAIL;
--#else
-- /* we must run helper for NIS+ passwords */
-- return PAM_UNIX_RUN_HELPER;
--#endif
- } else if (is_pwd_shadowed(*pwd)) {
- /*
- * ...and shadow password file entry for this user,