summaryrefslogtreecommitdiff
path: root/debian/patches-applied/rhosts_int32_not_bool.patch
blob: c2a9c3a6c5649791b64121640ea9852b6750cae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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. */