aboutsummaryrefslogtreecommitdiff
path: root/debian/patches-applied/rhosts_int32_not_bool.patch
diff options
context:
space:
mode:
authorSteve Langasek <vorlon@debian.org>2008-07-22 17:13:13 -0700
committerSteve Langasek <steve.langasek@ubuntu.com>2019-01-03 16:11:45 -0800
commitcc01c11f39b6bd39ee47196ef6b312efdb55363f (patch)
tree3bc53997afef081ffb3af88df03739727b2f04b4 /debian/patches-applied/rhosts_int32_not_bool.patch
parent0e3f08c1dcc4f9bc985459628461a4460d34e6d2 (diff)
downloadpam-cc01c11f39b6bd39ee47196ef6b312efdb55363f.tar.gz
pam-cc01c11f39b6bd39ee47196ef6b312efdb55363f.tar.bz2
pam-cc01c11f39b6bd39ee47196ef6b312efdb55363f.zip
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...
Diffstat (limited to 'debian/patches-applied/rhosts_int32_not_bool.patch')
-rw-r--r--debian/patches-applied/rhosts_int32_not_bool.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/patches-applied/rhosts_int32_not_bool.patch b/debian/patches-applied/rhosts_int32_not_bool.patch
new file mode 100644
index 00000000..c2a9c3a6
--- /dev/null
+++ b/debian/patches-applied/rhosts_int32_not_bool.patch
@@ -0,0 +1,13 @@
+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. */