mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 02:02:10 +08:00
- markus@cvs.openbsd.org 2001/03/28 20:50:45
[sshd.c] call refuse() before close(); from olemx@ans.pl
This commit is contained in:
parent
ff2618c80f
commit
7de696e798
@ -26,6 +26,9 @@
|
||||
- stevesk@cvs.openbsd.org 2001/03/28 20:04:38
|
||||
[scp.c]
|
||||
usage more like rcp and add missing -B to usage; ok markus@
|
||||
- markus@cvs.openbsd.org 2001/03/28 20:50:45
|
||||
[sshd.c]
|
||||
call refuse() before close(); from olemx@ans.pl
|
||||
|
||||
20010328
|
||||
- (djm) Reorder tests and library inclusion for Krb4/AFS to try to
|
||||
@ -4764,4 +4767,4 @@
|
||||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1033 2001/03/29 00:43:54 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1034 2001/03/29 00:45:12 mouring Exp $
|
||||
|
4
sshd.c
4
sshd.c
@ -40,7 +40,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: sshd.c,v 1.181 2001/03/27 17:46:49 provos Exp $");
|
||||
RCSID("$OpenBSD: sshd.c,v 1.182 2001/03/28 20:50:45 markus Exp $");
|
||||
|
||||
#include <openssl/dh.h>
|
||||
#include <openssl/bn.h>
|
||||
@ -1099,9 +1099,9 @@ main(int ac, char **av)
|
||||
fromhost(&req);
|
||||
|
||||
if (!hosts_access(&req)) {
|
||||
refuse(&req);
|
||||
close(sock_in);
|
||||
close(sock_out);
|
||||
refuse(&req);
|
||||
}
|
||||
/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user