mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- stevesk@cvs.openbsd.org 2002/08/22 20:57:19
[ssh-agent.c] shutdown(SHUT_RDWR) not needed before close here; ok markus@
This commit is contained in:
parent
066928648b
commit
061d5b144f
@ -20,6 +20,9 @@
|
|||||||
[clientloop.c]
|
[clientloop.c]
|
||||||
format with current EscapeChar; bugzilla #388 from wknox@mitre.org.
|
format with current EscapeChar; bugzilla #388 from wknox@mitre.org.
|
||||||
ok markus@
|
ok markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2002/08/22 20:57:19
|
||||||
|
[ssh-agent.c]
|
||||||
|
shutdown(SHUT_RDWR) not needed before close here; ok markus@
|
||||||
|
|
||||||
20020820
|
20020820
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
@ -1561,4 +1564,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.2432 2002/09/04 06:32:10 djm Exp $
|
$Id: ChangeLog,v 1.2433 2002/09/04 06:33:31 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.101 2002/08/22 19:27:53 stevesk Exp $");
|
RCSID("$OpenBSD: ssh-agent.c,v 1.102 2002/08/22 20:57:19 stevesk Exp $");
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
@ -109,7 +109,6 @@ char *__progname;
|
|||||||
static void
|
static void
|
||||||
close_socket(SocketEntry *e)
|
close_socket(SocketEntry *e)
|
||||||
{
|
{
|
||||||
shutdown(e->fd, SHUT_RDWR);
|
|
||||||
close(e->fd);
|
close(e->fd);
|
||||||
e->fd = -1;
|
e->fd = -1;
|
||||||
e->type = AUTH_UNUSED;
|
e->type = AUTH_UNUSED;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user