Fix typo (missing paren) affecting KRB4 && KRB5 case.

Approved by:	des
This commit is contained in:
Jacques Vidrine 2002-03-25 14:55:41 +00:00
parent 3c1a6de57e
commit 26241f6368
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93155

View File

@ -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)