1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

REALLY correct typo this time.

Noticed by:	roam
This commit is contained in:
Jacques Vidrine 2002-03-26 12:27:43 +00:00
parent ed68d15dcc
commit 7fd1ca3b0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93216

View File

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