diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | auth.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -47,6 +47,9 @@ | |||
47 | sshd_config] | 47 | sshd_config] |
48 | configurable authorized_keys{,2} location; originally from peter@; | 48 | configurable authorized_keys{,2} location; originally from peter@; |
49 | ok djm@ | 49 | ok djm@ |
50 | - markus@cvs.openbsd.org 2001/05/24 11:12:42 | ||
51 | [auth.c] | ||
52 | fix comment; from jakob@ | ||
50 | 53 | ||
51 | 20010528 | 54 | 20010528 |
52 | - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c | 55 | - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c |
@@ -5477,4 +5480,4 @@ | |||
5477 | - Wrote replacements for strlcpy and mkdtemp | 5480 | - Wrote replacements for strlcpy and mkdtemp |
5478 | - Released 1.0pre1 | 5481 | - Released 1.0pre1 |
5479 | 5482 | ||
5480 | $Id: ChangeLog,v 1.1236 2001/06/05 20:25:05 mouring Exp $ | 5483 | $Id: ChangeLog,v 1.1237 2001/06/05 20:27:53 mouring Exp $ |
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth.c,v 1.22 2001/05/20 17:20:35 markus Exp $"); | 26 | RCSID("$OpenBSD: auth.c,v 1.23 2001/05/24 11:12:42 markus Exp $"); |
27 | 27 | ||
28 | #ifdef HAVE_LOGIN_H | 28 | #ifdef HAVE_LOGIN_H |
29 | #include <login.h> | 29 | #include <login.h> |
@@ -298,7 +298,7 @@ authorized_keys_file2(struct passwd *pw) | |||
298 | /* | 298 | /* |
299 | * Check a given file for security. This is defined as all components | 299 | * Check a given file for security. This is defined as all components |
300 | * of the path to the file must either be owned by either the owner of | 300 | * of the path to the file must either be owned by either the owner of |
301 | * of the file or root and no directories must be world writable. | 301 | * of the file or root and no directories must be group or world writable. |
302 | * | 302 | * |
303 | * XXX Should any specific check be done for sym links ? | 303 | * XXX Should any specific check be done for sym links ? |
304 | * | 304 | * |