mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
Make libssh.so useable (undefined reference to IPv4or6).
Reviewed by: des, markm Approved by: markm
This commit is contained in:
parent
0063afffd5
commit
fd4ca9e02d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89703
@ -133,7 +133,7 @@ static int all_opens_permitted = 0;
|
||||
static int have_hostname_in_open = 0;
|
||||
|
||||
/* AF_UNSPEC or AF_INET or AF_INET6 */
|
||||
extern int IPv4or6;
|
||||
int IPv4or6 = AF_UNSPEC;
|
||||
|
||||
void port_open_helper(Channel *c, char *rtype);
|
||||
|
||||
|
@ -74,7 +74,7 @@ extern char *__progname;
|
||||
|
||||
/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
|
||||
Default value is AF_UNSPEC means both IPv4 and IPv6. */
|
||||
int IPv4or6 = AF_UNSPEC;
|
||||
extern int IPv4or6;
|
||||
|
||||
/* Flag indicating whether debug mode is on. This can be set on the command line. */
|
||||
int debug_flag = 0;
|
||||
|
@ -103,7 +103,7 @@ char *config_file_name = _PATH_SERVER_CONFIG_FILE;
|
||||
* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
|
||||
* Default value is AF_UNSPEC means both IPv4 and IPv6.
|
||||
*/
|
||||
int IPv4or6 = AF_UNSPEC;
|
||||
extern int IPv4or6;
|
||||
|
||||
/*
|
||||
* Debug mode flag. This can be set on the command line. If debug
|
||||
|
@ -68,8 +68,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include "log.h"
|
||||
#include "pam_ssh.h"
|
||||
|
||||
int IPv4or6 = AF_UNSPEC;
|
||||
|
||||
/*
|
||||
* Generic cleanup function for SSH "Key" type.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user