summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2008-07-25 17:53:00 -0700
committerSteve Langasek <steve.langasek@ubuntu.com>2019-01-03 17:01:53 -0800
commitaa200674c0ed6c779fe81d0eb86e406e242b6665 (patch)
treec9198f61af492cb799fe39def357fcb5f23b9184 /debian
parentb138aaa0087d893a7c367670d9eef498c15587f0 (diff)
revert rhosts_int32_not_bool.patch; doesn't matter now, pam_rhosts_auth has
been dropped upstream
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog4
-rw-r--r--debian/patches-applied/rhosts_int32_not_bool.patch13
-rw-r--r--debian/patches-applied/series1
3 files changed, 0 insertions, 18 deletions
diff --git a/debian/changelog b/debian/changelog
index ae4e7636..bd2ca9e8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -17,10 +17,6 @@ pam (0.99.10.0-1) UNRELEASED; urgency=low
misc_conv_allow_sigint.patch, which have been merged upstream.
* Patch 022_pam_unix_group_time_miscfixes: partially merged upstream;
now is really just "pam_group_miscfixes".
- * New patch, rhosts_int32_not_bool.patch, to fix a parentheses error in
- pam_rhosts_auth introduced upstream in 0.99.9.0: we want to cast the
- result of inet_addr to int32_t, not the result of a boolean *comparison*
- on inet_addr's result...
* The password-changing helper functionality for SELinux systems has been
split out into a separate unix_update binary, so at long last we can
change unix_chkpwd to be sgid shadow instead of suid root.
diff --git a/debian/patches-applied/rhosts_int32_not_bool.patch b/debian/patches-applied/rhosts_int32_not_bool.patch
deleted file mode 100644
index c2a9c3a6..00000000
--- a/debian/patches-applied/rhosts_int32_not_bool.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: pam.deb/modules/pam_rhosts/pam_rhosts_auth.c
-===================================================================
---- pam.deb.orig/modules/pam_rhosts/pam_rhosts_auth.c
-+++ pam.deb/modules/pam_rhosts/pam_rhosts_auth.c
-@@ -267,7 +267,7 @@
-
-
- /* Try for raw ip address first. */
-- if (isdigit(*lhost) && (int32_t)(laddr = inet_addr(lhost) != -1))
-+ if (isdigit(*lhost) && (int32_t)(laddr = inet_addr(lhost)) != -1)
- return (negate*(! (raddr ^ laddr)));
-
- /* Better be a hostname. */
diff --git a/debian/patches-applied/series b/debian/patches-applied/series
index c674adf5..87d53fcf 100644
--- a/debian/patches-applied/series
+++ b/debian/patches-applied/series
@@ -18,5 +18,4 @@ hurd_no_setfsuid
PAM-manpage-section -p2
pam_env_ignore_garbage.patch -p2
pam_tally_audit.patch
-rhosts_int32_not_bool.patch
autoconf.patch