diff options
author | des <des@FreeBSD.org> | 2004-01-09 08:07:12 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-01-09 08:07:12 +0000 |
commit | f773ff17e42c65209e2a2e000de3c43c94166fd3 (patch) | |
tree | 32fd6fe39c31b08368b4fc110eec78de5210be3c /crypto | |
parent | 1d43d52f79cad462e21256035e4900d91531600a (diff) | |
download | FreeBSD-src-f773ff17e42c65209e2a2e000de3c43c94166fd3.zip FreeBSD-src-f773ff17e42c65209e2a2e000de3c43c94166fd3.tar.gz |
Egg on my face: UsePAM was off by default.
Pointed out by: Sean McNeil <sean@mcneil.com>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/servconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index 017827e..781c2c2 100644 --- a/crypto/openssh/servconf.c +++ b/crypto/openssh/servconf.c @@ -111,7 +111,7 @@ fill_default_server_options(ServerOptions *options) { /* Portable-specific options */ if (options->use_pam == -1) - options->use_pam = 0; + options->use_pam = 1; /* Standard Options */ if (options->protocol == SSH_PROTO_UNKNOWN) |