summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2016-05-03 15:25:06 +0000
committerDamien Miller <djm@mindrot.org>2016-05-04 01:58:46 +1000
commit771c2f51ffc0c9a2877b7892fada0c77bd1f6549 (patch)
tree5093da892eb50b0e20bc6d4eeb4bc39bc8a5fee9 /servconf.c
parentcdcd941994dc430f50d0a4e6a712d32b66e6199e (diff)
upstream commit
don't forget to include StreamLocalBindUnlink in the config dump output Upstream-ID: 14a6d970b3b45c8e94272e3c661e9a0b2a0ee7cb
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c
index 6111c5a94..01750a6c8 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
1 1
2/* $OpenBSD: servconf.c,v 1.287 2016/05/02 08:49:03 djm Exp $ */ 2/* $OpenBSD: servconf.c,v 1.288 2016/05/03 15:25:06 djm Exp $ */
3/* 3/*
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved 5 * All rights reserved
@@ -2293,6 +2293,7 @@ dump_config(ServerOptions *o)
2293 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding); 2293 dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
2294 dump_cfg_fmtint(sAllowAgentForwarding, o->allow_agent_forwarding); 2294 dump_cfg_fmtint(sAllowAgentForwarding, o->allow_agent_forwarding);
2295 dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding); 2295 dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding);
2296 dump_cfg_fmtint(sStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
2296 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep); 2297 dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
2297 dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash); 2298 dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);
2298 2299