summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-01-10 19:26:43 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-01-10 19:26:43 +1100
commitd3300454d84715a921978163895e961d24b6deaa (patch)
treee135b0532fc16304552728203766f43567f0099c
parent7bd98e7f74ebd8bd32157b607acedcb68201b7de (diff)
- dtucker@cvs.openbsd.org 2010/01/10 03:51:17
[servconf.c] Add ChrootDirectory to sshd.c test-mode output
-rw-r--r--ChangeLog4
-rw-r--r--servconf.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ca189f943..8b419858d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120091210 120091210
2 - (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c] 2 - (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c]
3 Remove hacks add for RoutingDomain in preparation for its removal. 3 Remove hacks add for RoutingDomain in preparation for its removal.
4 - (dtucker) OpenBSD CVS Sync
4 - dtucker@cvs.openbsd.org 2010/01/09 23:04:13 5 - dtucker@cvs.openbsd.org 2010/01/09 23:04:13
5 [channels.c ssh.1 servconf.c sshd_config.5 sshd.c channels.h servconf.h 6 [channels.c ssh.1 servconf.c sshd_config.5 sshd.c channels.h servconf.h
6 ssh-keyscan.1 ssh-keyscan.c readconf.c sshconnect.c misc.c ssh.c 7 ssh-keyscan.1 ssh-keyscan.c readconf.c sshconnect.c misc.c ssh.c
@@ -14,6 +15,9 @@
14 $ route -T 2 exec sh 15 $ route -T 2 exec sh
15 $ ssh 10.1.2.3 16 $ ssh 10.1.2.3
16 ok deraadt@ markus@ stevesk@ reyk@ 17 ok deraadt@ markus@ stevesk@ reyk@
18 - dtucker@cvs.openbsd.org 2010/01/10 03:51:17
19 [servconf.c]
20 Add ChrootDirectory to sshd.c test-mode output
17 21
1820091209 2220091209
19 - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't 23 - (dtucker) Wrap use of IPPROTO_IPV6 in an ifdef for platforms that don't
diff --git a/servconf.c b/servconf.c
index fc3e479bd..b1964e865 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: servconf.c,v 1.200 2010/01/09 23:04:13 dtucker Exp $ */ 1/* $OpenBSD: servconf.c,v 1.201 2010/01/10 03:51:17 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -1626,6 +1626,7 @@ dump_config(ServerOptions *o)
1626 dump_cfg_string(sAuthorizedKeysFile, o->authorized_keys_file); 1626 dump_cfg_string(sAuthorizedKeysFile, o->authorized_keys_file);
1627 dump_cfg_string(sAuthorizedKeysFile2, o->authorized_keys_file2); 1627 dump_cfg_string(sAuthorizedKeysFile2, o->authorized_keys_file2);
1628 dump_cfg_string(sForceCommand, o->adm_forced_command); 1628 dump_cfg_string(sForceCommand, o->adm_forced_command);
1629 dump_cfg_string(sChrootDirectory, o->chroot_directory);
1629 1630
1630 /* string arguments requiring a lookup */ 1631 /* string arguments requiring a lookup */
1631 dump_cfg_string(sLogLevel, log_level_name(o->log_level)); 1632 dump_cfg_string(sLogLevel, log_level_name(o->log_level));