aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-03-29 19:14:27 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-03-29 19:14:27 +0000
commit6d0d51a41c4df22be3eb2ec8038f6fe6d260b21b (patch)
treecf7d77bf70ba34dc866aa77637bab70d19b3a7cc /crypto
parent638dcf6ecfd51d93d526cca4ade29a6ee967ebbf (diff)
downloadsrc-6d0d51a41c4df22be3eb2ec8038f6fe6d260b21b.tar.gz
src-6d0d51a41c4df22be3eb2ec8038f6fe6d260b21b.zip
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
Notes
Notes: svn path=/head/; revision=359424
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 3f628da77384..dde75920e79c 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;