[sshconnect.c]
     ed static function (less warnings)
This commit is contained in:
Ben Lindstrom 2002-07-11 03:58:11 +00:00
parent e982773d2a
commit ba8df7d76d
2 changed files with 7 additions and 2 deletions

View File

@ -10,6 +10,9 @@
suppress log on reverse lookup failiure, as there's no real value in suppress log on reverse lookup failiure, as there's no real value in
doing so. doing so.
markus ok markus ok
- itojun@cvs.openbsd.org 2002/07/09 12:04:02
[sshconnect.c]
ed static function (less warnings)
20020709 20020709
- (bal) NO_IPPORT_RESERVED_CONCEPT used instead of CYGWIN so other platforms - (bal) NO_IPPORT_RESERVED_CONCEPT used instead of CYGWIN so other platforms
@ -1333,4 +1336,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.2355 2002/07/11 03:56:46 mouring Exp $ $Id: ChangeLog,v 1.2356 2002/07/11 03:58:11 mouring Exp $

View File

@ -13,7 +13,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: sshconnect.c,v 1.128 2002/07/09 11:56:50 itojun Exp $"); RCSID("$OpenBSD: sshconnect.c,v 1.129 2002/07/09 12:04:02 itojun Exp $");
#include <openssl/bn.h> #include <openssl/bn.h>
@ -46,6 +46,7 @@ extern uid_t original_effective_uid;
#define INET6_ADDRSTRLEN 46 #define INET6_ADDRSTRLEN 46
#endif #endif
#if 0
static const char * static const char *
sockaddr_ntop(struct sockaddr *sa, socklen_t salen) sockaddr_ntop(struct sockaddr *sa, socklen_t salen)
{ {
@ -56,6 +57,7 @@ sockaddr_ntop(struct sockaddr *sa, socklen_t salen)
fatal("sockaddr_ntop: getnameinfo NI_NUMERICHOST failed"); fatal("sockaddr_ntop: getnameinfo NI_NUMERICHOST failed");
return addrbuf; return addrbuf;
} }
#endif
/* /*
* Connect to the given ssh server using a proxy command. * Connect to the given ssh server using a proxy command.