diff options
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r-- | auth-rhosts.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c index 7a10210b6..587f53721 100644 --- a/auth-rhosts.c +++ b/auth-rhosts.c | |||
@@ -260,8 +260,7 @@ auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname, | |||
260 | return 0; | 260 | return 0; |
261 | } | 261 | } |
262 | if (options.strict_modes && | 262 | if (options.strict_modes && |
263 | ((st.st_uid != 0 && st.st_uid != pw->pw_uid) || | 263 | !secure_permissions(&st, pw->pw_uid)) { |
264 | (st.st_mode & 022) != 0)) { | ||
265 | logit("Rhosts authentication refused for %.100s: " | 264 | logit("Rhosts authentication refused for %.100s: " |
266 | "bad ownership or modes for home directory.", pw->pw_name); | 265 | "bad ownership or modes for home directory.", pw->pw_name); |
267 | auth_debug_add("Rhosts authentication refused for %.100s: " | 266 | auth_debug_add("Rhosts authentication refused for %.100s: " |
@@ -287,8 +286,7 @@ auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname, | |||
287 | * allowing access to their account by anyone. | 286 | * allowing access to their account by anyone. |
288 | */ | 287 | */ |
289 | if (options.strict_modes && | 288 | if (options.strict_modes && |
290 | ((st.st_uid != 0 && st.st_uid != pw->pw_uid) || | 289 | !secure_permissions(&st, pw->pw_uid)) { |
291 | (st.st_mode & 022) != 0)) { | ||
292 | logit("Rhosts authentication refused for %.100s: bad modes for %.200s", | 290 | logit("Rhosts authentication refused for %.100s: bad modes for %.200s", |
293 | pw->pw_name, buf); | 291 | pw->pw_name, buf); |
294 | auth_debug_add("Bad file modes for %.200s", buf); | 292 | auth_debug_add("Bad file modes for %.200s", buf); |