diff options
author | 2016-05-03 15:25:06 +0000 | |
---|---|---|
committer | 2016-05-03 15:25:06 +0000 | |
commit | 4709d40e5450ce662de3f5f56af8d191c939b576 (patch) | |
tree | cb76b52de857b906e27d6dff3225c374f2be5913 | |
parent | make nethack^wrandomart fingerprint flag more readily searchable (diff) | |
download | wireguard-openbsd-4709d40e5450ce662de3f5f56af8d191c939b576.tar.xz wireguard-openbsd-4709d40e5450ce662de3f5f56af8d191c939b576.zip |
don't forget to include StreamLocalBindUnlink in the config
dump output
-rw-r--r-- | usr.bin/ssh/servconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 6ccb03141b7..d61d96767ed 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -1,5 +1,5 @@ -/* $OpenBSD: servconf.c,v 1.287 2016/05/02 08:49:03 djm Exp $ */ +/* $OpenBSD: servconf.c,v 1.288 2016/05/03 15:25:06 djm Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -2234,6 +2234,7 @@ dump_config(ServerOptions *o) dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding); dump_cfg_fmtint(sAllowAgentForwarding, o->allow_agent_forwarding); dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding); + dump_cfg_fmtint(sStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink); dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep); dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash); |