summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/servconf.c
diff options
context:
space:
mode:
authornectar <nectar@FreeBSD.org>2002-03-25 14:55:41 +0000
committernectar <nectar@FreeBSD.org>2002-03-25 14:55:41 +0000
commit8624a5ead1a856ccc416f35a7fd7c134624b3bdc (patch)
treeb297d5b5404f6c2f5fc7a2f584d2443727fa1a50 /crypto/openssh/servconf.c
parent9354df3c222b65ec9304a20f43f642b9c30cd146 (diff)
downloadFreeBSD-src-8624a5ead1a856ccc416f35a7fd7c134624b3bdc.zip
FreeBSD-src-8624a5ead1a856ccc416f35a7fd7c134624b3bdc.tar.gz
Fix typo (missing paren) affecting KRB4 && KRB5 case.
Approved by: des
Diffstat (limited to 'crypto/openssh/servconf.c')
-rw-r--r--crypto/openssh/servconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssh/servconf.c b/crypto/openssh/servconf.c
index 18f223d..e00d8fc 100644
--- a/crypto/openssh/servconf.c
+++ b/crypto/openssh/servconf.c
@@ -192,7 +192,7 @@ fill_default_server_options(ServerOptions *options)
#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)
OpenPOWER on IntegriCloud