parent
78ffe26501
commit
d592048c36
|
@ -1,3 +1,9 @@
|
||||||
|
20040229
|
||||||
|
- (dtucker) OpenBSD CVS Sync
|
||||||
|
- djm@cvs.openbsd.org 2004/02/25 00:22:45
|
||||||
|
[sshd.c]
|
||||||
|
typo in comment
|
||||||
|
|
||||||
20040226
|
20040226
|
||||||
- (bal) KNF our sshlogin.c even if the code looks nothing like upstream
|
- (bal) KNF our sshlogin.c even if the code looks nothing like upstream
|
||||||
code due to diversity issues.
|
code due to diversity issues.
|
||||||
|
@ -802,4 +808,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3260 2004/02/27 03:01:19 mouring Exp $
|
$Id: ChangeLog,v 1.3261 2004/02/29 09:11:30 dtucker Exp $
|
||||||
|
|
4
sshd.c
4
sshd.c
|
@ -42,7 +42,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshd.c,v 1.286 2004/02/23 12:02:33 markus Exp $");
|
RCSID("$OpenBSD: sshd.c,v 1.287 2004/02/25 00:22:45 djm Exp $");
|
||||||
|
|
||||||
#include <openssl/dh.h>
|
#include <openssl/dh.h>
|
||||||
#include <openssl/bn.h>
|
#include <openssl/bn.h>
|
||||||
|
@ -568,7 +568,7 @@ privsep_preauth_child(void)
|
||||||
debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
|
debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
|
||||||
(u_int)pw->pw_gid);
|
(u_int)pw->pw_gid);
|
||||||
#if 0
|
#if 0
|
||||||
/* XXX not ready, to heavy after chroot */
|
/* XXX not ready, too heavy after chroot */
|
||||||
do_setusercontext(pw);
|
do_setusercontext(pw);
|
||||||
#else
|
#else
|
||||||
gidset[0] = pw->pw_gid;
|
gidset[0] = pw->pw_gid;
|
||||||
|
|
Loading…
Reference in New Issue