diff options
author | Darren Tucker <dtucker@zip.com.au> | 2015-04-17 02:56:13 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2015-04-17 02:56:13 +0200 |
commit | 70860b6d07461906730632f9758ff1b7c98c695a (patch) | |
tree | c324fa40def50faca6c697ae9205026f2f696f1b /servconf.c | |
parent | Wrap endian.h include inside ifdef (bz#2370). (diff) | |
download | openssh-70860b6d07461906730632f9758ff1b7c98c695a.tar.xz openssh-70860b6d07461906730632f9758ff1b7c98c695a.zip |
Format UsePAM setting when using sshd -T.
Part of bz#2346, patch from jjelen at redhat com.
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c index 318546290..ad7e7a330 100644 --- a/servconf.c +++ b/servconf.c @@ -2094,7 +2094,7 @@ dump_config(ServerOptions *o) /* integer arguments */ #ifdef USE_PAM - dump_cfg_int(sUsePAM, o->use_pam); + dump_cfg_fmtint(sUsePAM, o->use_pam); #endif dump_cfg_int(sServerKeyBits, o->server_key_bits); dump_cfg_int(sLoginGraceTime, o->login_grace_time); |