summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorkevans <kevans@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-03-29 19:14:27 +0000
committerkevans <kevans@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-03-29 19:14:27 +0000
commitce4143a8f2a8c49eefa16a84e7dbd25c1138776b (patch)
treecf7d77bf70ba34dc866aa77637bab70d19b3a7cc /crypto
parent1828c0ec496fd0382b15d0251d508eea7d78bbdc (diff)
downloadfreebsd-ce4143a8f2a8c49eefa16a84e7dbd25c1138776b.tar.gz
freebsd-ce4143a8f2a8c49eefa16a84e7dbd25c1138776b.tar.bz2
openssh: -fno-common fix from upstream f47d72ddad
This is currently staged in vendor/ as part of the 8.0p1 import, which isn't quite ready to land. Given that this is a simple one-line fix, apply it now as the fallout will be pretty minimal. -fno-common will become the default in GCC10/LLVM11. MFC after: 3 days git-svn-id: http://svn.freebsd.org/base/head@359424 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
Diffstat (limited to 'crypto')
-rw-r--r--crypto/openssh/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssh/session.c b/crypto/openssh/session.c
index 3f628da7738..dde75920e79 100644
--- a/crypto/openssh/session.c
+++ b/crypto/openssh/session.c
@@ -143,7 +143,7 @@ extern int startup_pipe;
extern void destroy_sensitive_data(void);
extern struct sshbuf *loginmsg;
extern struct sshauthopt *auth_opts;
-char *tun_fwd_ifnames; /* serverloop.c */
+extern char *tun_fwd_ifnames; /* serverloop.c */
/* original command from peer. */
const char *original_command = NULL;