[ssh-agent.c]
     shutdown(SHUT_RDWR) not needed before close here; ok markus@
This commit is contained in:
Damien Miller 2002-09-04 16:33:31 +10:00
parent 066928648b
commit 061d5b144f
2 changed files with 5 additions and 3 deletions

View File

@ -20,6 +20,9 @@
[clientloop.c]
format with current EscapeChar; bugzilla #388 from wknox@mitre.org.
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
- OpenBSD CVS Sync
@ -1561,4 +1564,4 @@
- (stevesk) entropy.c: typo in debug message
- (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 $

View File

@ -35,7 +35,7 @@
#include "includes.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/md5.h>
@ -109,7 +109,6 @@ char *__progname;
static void
close_socket(SocketEntry *e)
{
shutdown(e->fd, SHUT_RDWR);
close(e->fd);
e->fd = -1;
e->type = AUTH_UNUSED;