mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-09-22 09:28:01 +02:00
- (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@
This commit is contained in:
parent
0775976dc6
commit
180fc5b236
@ -5,6 +5,11 @@
|
|||||||
dragging a window)
|
dragging a window)
|
||||||
- Perform server grab after we have the keyboard and/or pointer to avoid
|
- Perform server grab after we have the keyboard and/or pointer to avoid
|
||||||
races.
|
races.
|
||||||
|
- (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@
|
||||||
|
|
||||||
20030211
|
20030211
|
||||||
- (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
|
- (djm) Cygwin needs libcrypt too. Patch from vinschen@redhat.com
|
||||||
@ -1105,4 +1110,4 @@
|
|||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2594 2003/02/24 00:48:22 djm Exp $
|
$Id: ChangeLog,v 1.2595 2003/02/24 00:50:18 djm Exp $
|
||||||
|
6
sshd.c
6
sshd.c
@ -42,7 +42,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshd.c,v 1.261 2002/11/07 16:28:47 markus Exp $");
|
RCSID("$OpenBSD: sshd.c,v 1.262 2003/01/27 17:06:31 markus Exp $");
|
||||||
|
|
||||||
#include <openssl/dh.h>
|
#include <openssl/dh.h>
|
||||||
#include <openssl/bn.h>
|
#include <openssl/bn.h>
|
||||||
@ -1066,8 +1066,8 @@ main(int ac, char **av)
|
|||||||
#else
|
#else
|
||||||
if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
|
if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
|
||||||
#endif
|
#endif
|
||||||
fatal("Bad owner or mode for %s",
|
fatal("%s must be owned by root and not group or "
|
||||||
_PATH_PRIVSEP_CHROOT_DIR);
|
"world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Configuration looks good, so exit if in test mode. */
|
/* Configuration looks good, so exit if in test mode. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user