mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
- stevesk@cvs.openbsd.org 2002/08/21 20:10:28
[ssh-agent.c] raise listen backlog; ok markus@
This commit is contained in:
parent
f771ab75f0
commit
4efdfff6ba
@ -10,6 +10,9 @@
|
|||||||
- stevesk@cvs.openbsd.org 2002/08/21 19:38:06
|
- stevesk@cvs.openbsd.org 2002/08/21 19:38:06
|
||||||
[servconf.c sshd.8 sshd_config sshd_config.5]
|
[servconf.c sshd.8 sshd_config sshd_config.5]
|
||||||
change LoginGraceTime default to 1 minute; ok mouring@ markus@
|
change LoginGraceTime default to 1 minute; ok mouring@ markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2002/08/21 20:10:28
|
||||||
|
[ssh-agent.c]
|
||||||
|
raise listen backlog; ok markus@
|
||||||
|
|
||||||
20020820
|
20020820
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
@ -1551,4 +1554,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2429 2002/09/04 06:25:52 djm Exp $
|
$Id: ChangeLog,v 1.2430 2002/09/04 06:28:18 djm Exp $
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include "openbsd-compat/fake-queue.h"
|
#include "openbsd-compat/fake-queue.h"
|
||||||
RCSID("$OpenBSD: ssh-agent.c,v 1.99 2002/08/12 10:46:35 markus Exp $");
|
RCSID("$OpenBSD: ssh-agent.c,v 1.100 2002/08/21 20:10:28 stevesk Exp $");
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
@ -1056,7 +1056,7 @@ main(int ac, char **av)
|
|||||||
#ifdef HAVE_CYGWIN
|
#ifdef HAVE_CYGWIN
|
||||||
umask(prev_mask);
|
umask(prev_mask);
|
||||||
#endif
|
#endif
|
||||||
if (listen(sock, 5) < 0) {
|
if (listen(sock, 128) < 0) {
|
||||||
perror("listen");
|
perror("listen");
|
||||||
cleanup_exit(1);
|
cleanup_exit(1);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user