summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--auth.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b1aa113..1cdf267a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -47,6 +47,9 @@
sshd_config]
configurable authorized_keys{,2} location; originally from peter@;
ok djm@
+ - markus@cvs.openbsd.org 2001/05/24 11:12:42
+ [auth.c]
+ fix comment; from jakob@
20010528
- (tim) [conifgure.in] add setvbuf test needed for sftp-int.c
@@ -5477,4 +5480,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1236 2001/06/05 20:25:05 mouring Exp $
+$Id: ChangeLog,v 1.1237 2001/06/05 20:27:53 mouring Exp $
diff --git a/auth.c b/auth.c
index 07e5b8f0..8e6b32de 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth.c,v 1.22 2001/05/20 17:20:35 markus Exp $");
+RCSID("$OpenBSD: auth.c,v 1.23 2001/05/24 11:12:42 markus Exp $");
#ifdef HAVE_LOGIN_H
#include <login.h>
@@ -298,7 +298,7 @@ authorized_keys_file2(struct passwd *pw)
/*
* Check a given file for security. This is defined as all components
* of the path to the file must either be owned by either the owner of
- * of the file or root and no directories must be world writable.
+ * of the file or root and no directories must be group or world writable.
*
* XXX Should any specific check be done for sym links ?
*