diff options
author | Damien Miller <djm@mindrot.org> | 2003-02-24 11:50:18 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-02-24 11:50:18 +1100 |
commit | 180fc5b23682ec39964b70dc3a43f9658b7c4acb (patch) | |
tree | 2699cfbceb3faf187a104ec25565669244310001 | |
parent | 0775976dc61e0c172b3b508cd13f087e477c5793 (diff) |
- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2003/01/27 17:06:31
[sshd.c]
more specific error message when /var/empty has wrong permissions;
bug #46, map@appgate.com; ok henning@, provos@, stevesk@
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | sshd.c | 6 |
2 files changed, 9 insertions, 4 deletions
@@ -5,6 +5,11 @@ | |||
5 | dragging a window) | 5 | dragging a window) |
6 | - Perform server grab after we have the keyboard and/or pointer to avoid | 6 | - Perform server grab after we have the keyboard and/or pointer to avoid |
7 | races. | 7 | races. |
8 | - (djm) OpenBSD CVS Sync | ||
9 | - markus@cvs.openbsd.org 2003/01/27 17:06:31 | ||
10 | [sshd.c] | ||
11 | more specific error message when /var/empty has wrong permissions; | ||
12 | bug #46, map@appgate.com; ok henning@, provos@, stevesk@ | ||
8 | 13 | ||
9 | 20030211 | 14 | 20030211 |
10 | - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com | 15 | - (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com |
@@ -1105,4 +1110,4 @@ | |||
1105 | save auth method before monitor_reset_key_state(); bugzilla bug #284; | 1110 | save auth method before monitor_reset_key_state(); bugzilla bug #284; |
1106 | ok provos@ | 1111 | ok provos@ |
1107 | 1112 | ||
1108 | $Id: ChangeLog,v 1.2594 2003/02/24 00:48:22 djm Exp $ | 1113 | $Id: ChangeLog,v 1.2595 2003/02/24 00:50:18 djm Exp $ |
@@ -42,7 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include "includes.h" | 44 | #include "includes.h" |
45 | RCSID("$OpenBSD: sshd.c,v 1.261 2002/11/07 16:28:47 markus Exp $"); | 45 | RCSID("$OpenBSD: sshd.c,v 1.262 2003/01/27 17:06:31 markus Exp $"); |
46 | 46 | ||
47 | #include <openssl/dh.h> | 47 | #include <openssl/dh.h> |
48 | #include <openssl/bn.h> | 48 | #include <openssl/bn.h> |
@@ -1066,8 +1066,8 @@ main(int ac, char **av) | |||
1066 | #else | 1066 | #else |
1067 | if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0) | 1067 | if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0) |
1068 | #endif | 1068 | #endif |
1069 | fatal("Bad owner or mode for %s", | 1069 | fatal("%s must be owned by root and not group or " |
1070 | _PATH_PRIVSEP_CHROOT_DIR); | 1070 | "world-writable.", _PATH_PRIVSEP_CHROOT_DIR); |
1071 | } | 1071 | } |
1072 | 1072 | ||
1073 | /* Configuration looks good, so exit if in test mode. */ | 1073 | /* Configuration looks good, so exit if in test mode. */ |