summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-04 00:11:40 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-04 00:11:40 +0000
commit810af968b8c36cb5fb960483d051ba0c7805296a (patch)
treebadb221cc9ebbe8e08fd97edcb21408695816fc8
parentfbbfa8422f8317bcac829e1673dced62f49d59ba (diff)
- deraadt@cvs.openbsd.org 2002/06/28 23:05:06
[sshd.c] gidset[2] -> gidset[1]; markus ok
-rw-r--r--ChangeLog5
-rw-r--r--sshd.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cad81cab6..089a532ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -27,6 +27,9 @@
27 - deraadt@cvs.openbsd.org 2002/06/28 10:08:25 27 - deraadt@cvs.openbsd.org 2002/06/28 10:08:25
28 [sshd.c] 28 [sshd.c]
29 range check -u option at invocation 29 range check -u option at invocation
30 - deraadt@cvs.openbsd.org 2002/06/28 23:05:06
31 [sshd.c]
32 gidset[2] -> gidset[1]; markus ok
30 33
3120020702 3420020702
32 - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & 35 - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc &
@@ -1235,4 +1238,4 @@
1235 - (stevesk) entropy.c: typo in debug message 1238 - (stevesk) entropy.c: typo in debug message
1236 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1239 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1237 1240
1238$Id: ChangeLog,v 1.2322 2002/07/04 00:10:34 mouring Exp $ 1241$Id: ChangeLog,v 1.2323 2002/07/04 00:11:40 mouring Exp $
diff --git a/sshd.c b/sshd.c
index 21db6d5cf..c371e55ca 100644
--- a/sshd.c
+++ b/sshd.c
@@ -42,7 +42,7 @@
42 */ 42 */
43 43
44#include "includes.h" 44#include "includes.h"
45RCSID("$OpenBSD: sshd.c,v 1.252 2002/06/28 10:08:25 deraadt Exp $"); 45RCSID("$OpenBSD: sshd.c,v 1.253 2002/06/28 23:05:06 deraadt Exp $");
46 46
47#include <openssl/dh.h> 47#include <openssl/dh.h>
48#include <openssl/bn.h> 48#include <openssl/bn.h>
@@ -530,7 +530,7 @@ static void
530privsep_preauth_child(void) 530privsep_preauth_child(void)
531{ 531{
532 u_int32_t rand[256]; 532 u_int32_t rand[256];
533 gid_t gidset[2]; 533 gid_t gidset[1];
534 struct passwd *pw; 534 struct passwd *pw;
535 int i; 535 int i;
536 536