diff options
author | nectar <nectar@FreeBSD.org> | 2002-03-26 12:27:43 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2002-03-26 12:27:43 +0000 |
commit | 6a3cd1f6ba2132e6fd670d4594f957516046c4af (patch) | |
tree | b91a7e7fbca9a4adbb448690750705a30eb059a5 /crypto | |
parent | bcc2ba266141bfe9b637aa4ccbfa8ed3943fcd85 (diff) | |
download | FreeBSD-src-6a3cd1f6ba2132e6fd670d4594f957516046c4af.zip FreeBSD-src-6a3cd1f6ba2132e6fd670d4594f957516046c4af.tar.gz |
REALLY correct typo this time.
Noticed by: roam
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c index e00d8fc..17ded22 100644 --- a/crypto/openssh/servconf.c +++ b/crypto/openssh/servconf.c @@ -185,14 +185,14 @@ fill_default_server_options(ServerOptions *options) if (options->kerberos_authentication == -1) options->kerberos_authentication = (access(KEYFILE, R_OK) == 0 || - (access(krb5_defkeyname, R_OK) == 0); + (access(krb5_defkeyname, R_OK) == 0)); #elif defined(KRB4) if (options->kerberos_authentication == -1) options->kerberos_authentication = (access(KEYFILE, R_OK) == 0); #elif defined(KRB5) if (options->kerberos_authentication == -1) options->kerberos_authentication = - (access(krb5_defkeyname, R_OK) == 0)); + (access(krb5_defkeyname, R_OK) == 0); #endif #if defined(KRB4) || defined(KRB5) if (options->kerberos_or_local_passwd == -1) |