diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2019-01-17 04:45:10 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2019-01-17 04:45:10 +0000 |
commit | 58e51867ef66ca43de4feba2f34012908506a77f (patch) | |
tree | 1b5308d8ae0183068b81610e7f97d10816d64fda /usr.bin | |
parent | 0a26c8ae1d26b626eb81a355453c851c9e6eedc9 (diff) |
tun_fwd_ifnames variable should be extern; from Hanno Böck
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/session.c b/usr.bin/ssh/session.c index 691c6f43be8..b8e60436ebf 100644 --- a/usr.bin/ssh/session.c +++ b/usr.bin/ssh/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.308 2018/11/16 03:26:01 djm Exp $ */ +/* $OpenBSD: session.c,v 1.309 2019/01/17 04:45:09 djm Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -126,7 +126,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; |