diff options
author | Darren Tucker <dtucker@zip.com.au> | 2016-02-24 00:44:25 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2016-02-24 00:44:25 +0100 |
commit | fd4e4f2416baa2e6565ea49d52aade296bad3e28 (patch) | |
tree | 102eafa0301fc663f05d0b59938914657a836881 /servconf.c | |
parent | update spec/README versions ahead of release (diff) | |
download | openssh-fd4e4f2416baa2e6565ea49d52aade296bad3e28.tar.xz openssh-fd4e4f2416baa2e6565ea49d52aade296bad3e28.zip |
Skip PrintLastLog in config dump mode.
When DISABLE_LASTLOG is set, do not try to include PrintLastLog in the
config dump since it'll be reported as UNKNOWN.
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/servconf.c b/servconf.c index c0b6f6e65..b19d30e18 100644 --- a/servconf.c +++ b/servconf.c @@ -2273,7 +2273,9 @@ dump_config(ServerOptions *o) dump_cfg_fmtint(sChallengeResponseAuthentication, o->challenge_response_authentication); dump_cfg_fmtint(sPrintMotd, o->print_motd); +#ifndef DISABLE_LASTLOG dump_cfg_fmtint(sPrintLastLog, o->print_lastlog); +#endif dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding); dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost); dump_cfg_fmtint(sPermitTTY, o->permit_tty); |