mirror of git://anongit.mindrot.org/openssh.git
- stevesk@cvs.openbsd.org 2005/10/15 15:28:12
[sshconnect.c] make external definition static; ok deraadt@
This commit is contained in:
parent
0a0176e9f3
commit
c1af1d5f40
|
@ -39,6 +39,9 @@
|
||||||
- stevesk@cvs.openbsd.org 2005/10/14 02:29:37
|
- stevesk@cvs.openbsd.org 2005/10/14 02:29:37
|
||||||
[channels.c clientloop.c]
|
[channels.c clientloop.c]
|
||||||
free()->xfree(); ok djm@
|
free()->xfree(); ok djm@
|
||||||
|
- stevesk@cvs.openbsd.org 2005/10/15 15:28:12
|
||||||
|
[sshconnect.c]
|
||||||
|
make external definition static; ok deraadt@
|
||||||
|
|
||||||
20051102
|
20051102
|
||||||
- (dtucker) [openbsd-compat/bsd-misc.c] Bug #1108: fix broken strdup().
|
- (dtucker) [openbsd-compat/bsd-misc.c] Bug #1108: fix broken strdup().
|
||||||
|
@ -3172,4 +3175,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3936 2005/11/05 04:07:59 djm Exp $
|
$Id: ChangeLog,v 1.3937 2005/11/05 04:08:57 djm Exp $
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshconnect.c,v 1.168 2005/07/17 07:17:55 djm Exp $");
|
RCSID("$OpenBSD: sshconnect.c,v 1.169 2005/10/15 15:28:12 stevesk Exp $");
|
||||||
|
|
||||||
#include <openssl/bn.h>
|
#include <openssl/bn.h>
|
||||||
|
|
||||||
|
@ -31,13 +31,12 @@ RCSID("$OpenBSD: sshconnect.c,v 1.168 2005/07/17 07:17:55 djm Exp $");
|
||||||
#include "readconf.h"
|
#include "readconf.h"
|
||||||
#include "atomicio.h"
|
#include "atomicio.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#include "dns.h"
|
#include "dns.h"
|
||||||
|
|
||||||
char *client_version_string = NULL;
|
char *client_version_string = NULL;
|
||||||
char *server_version_string = NULL;
|
char *server_version_string = NULL;
|
||||||
|
|
||||||
int matching_host_key_dns = 0;
|
static int matching_host_key_dns = 0;
|
||||||
|
|
||||||
/* import */
|
/* import */
|
||||||
extern Options options;
|
extern Options options;
|
||||||
|
|
Loading…
Reference in New Issue