summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-08-20 18:42:13 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-08-20 18:42:13 +0000
commitd4ee3497cae7f5144cc570e15d67eaba2e1cdf2a (patch)
treed89744ad98b4891793290b62d8cbadb5c667b9b5
parente143f61b6f8875fd91efbfa609a0ef57c55af087 (diff)
- stevesk@cvs.openbsd.org 2002/08/08 23:54:52
[auth.c] typo in comment
-rw-r--r--ChangeLog5
-rw-r--r--auth.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 15e110b97..cbb8554ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,9 @@
20 - aaron@cvs.openbsd.org 2002/08/08 13:50:23 20 - aaron@cvs.openbsd.org 2002/08/08 13:50:23
21 [sshconnect1.c] 21 [sshconnect1.c]
22 Use & to test if bits are set, not &&; markus@ ok. 22 Use & to test if bits are set, not &&; markus@ ok.
23 - stevesk@cvs.openbsd.org 2002/08/08 23:54:52
24 [auth.c]
25 typo in comment
23 26
2420020813 2720020813
25 - (tim) [configure.ac] Display OpenSSL header/library version. 28 - (tim) [configure.ac] Display OpenSSL header/library version.
@@ -1517,4 +1520,4 @@
1517 - (stevesk) entropy.c: typo in debug message 1520 - (stevesk) entropy.c: typo in debug message
1518 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1521 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1519 1522
1520$Id: ChangeLog,v 1.2419 2002/08/20 18:41:15 mouring Exp $ 1523$Id: ChangeLog,v 1.2420 2002/08/20 18:42:13 mouring Exp $
diff --git a/auth.c b/auth.c
index 693826a93..43163b62e 100644
--- a/auth.c
+++ b/auth.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth.c,v 1.43 2002/05/17 14:27:55 millert Exp $"); 26RCSID("$OpenBSD: auth.c,v 1.44 2002/08/08 23:54:52 stevesk Exp $");
27 27
28#ifdef HAVE_LOGIN_H 28#ifdef HAVE_LOGIN_H
29#include <login.h> 29#include <login.h>
@@ -400,7 +400,7 @@ check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
400 400
401/* 401/*
402 * Check a given file for security. This is defined as all components 402 * Check a given file for security. This is defined as all components
403 * of the path to the file must either be owned by either the owner of 403 * of the path to the file must be owned by either the owner of
404 * of the file or root and no directories must be group or world writable. 404 * of the file or root and no directories must be group or world writable.
405 * 405 *
406 * XXX Should any specific check be done for sym links ? 406 * XXX Should any specific check be done for sym links ?