diff options
author | 2010-01-10 03:51:17 +0000 | |
---|---|---|
committer | 2010-01-10 03:51:17 +0000 | |
commit | 71c9a77a35526ac990b9fb24d3f7f7518a6a540c (patch) | |
tree | 47bd466454f0d5ce15901d5a5b8c6607d6f43454 | |
parent | Reimplement kvm_getproc2()'s support for reading crash dumps and (diff) | |
download | wireguard-openbsd-71c9a77a35526ac990b9fb24d3f7f7518a6a540c.tar.xz wireguard-openbsd-71c9a77a35526ac990b9fb24d3f7f7518a6a540c.zip |
Add ChrootDirectory to sshd.c test-mode 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 45e7233d3bb..332ec9de619 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.c,v 1.200 2010/01/09 23:04:13 dtucker Exp $ */ +/* $OpenBSD: servconf.c,v 1.201 2010/01/10 03:51:17 dtucker Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -1578,6 +1578,7 @@ dump_config(ServerOptions *o) dump_cfg_string(sAuthorizedKeysFile, o->authorized_keys_file); dump_cfg_string(sAuthorizedKeysFile2, o->authorized_keys_file2); dump_cfg_string(sForceCommand, o->adm_forced_command); + dump_cfg_string(sChrootDirectory, o->chroot_directory); /* string arguments requiring a lookup */ dump_cfg_string(sLogLevel, log_level_name(o->log_level)); |