[sshconnect.c]
     make external definition static; ok deraadt@
This commit is contained in:
Damien Miller 2005-11-05 15:08:57 +11:00
parent 0a0176e9f3
commit c1af1d5f40
2 changed files with 6 additions and 4 deletions

View File

@ -39,6 +39,9 @@
- stevesk@cvs.openbsd.org 2005/10/14 02:29:37
[channels.c clientloop.c]
free()->xfree(); ok djm@
- stevesk@cvs.openbsd.org 2005/10/15 15:28:12
[sshconnect.c]
make external definition static; ok deraadt@
20051102
- (dtucker) [openbsd-compat/bsd-misc.c] Bug #1108: fix broken strdup().
@ -3172,4 +3175,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (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 $

View File

@ -13,7 +13,7 @@
*/
#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>
@ -31,13 +31,12 @@ RCSID("$OpenBSD: sshconnect.c,v 1.168 2005/07/17 07:17:55 djm Exp $");
#include "readconf.h"
#include "atomicio.h"
#include "misc.h"
#include "dns.h"
char *client_version_string = NULL;
char *server_version_string = NULL;
int matching_host_key_dns = 0;
static int matching_host_key_dns = 0;
/* import */
extern Options options;