From 0d956b2fa9e3dc4a72cfba11b8fb05de03100b82 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 17 Nov 1998 16:29:23 +0000 Subject: Gerald Britton's support for mixed Kerberos and Hesiod. svn path=/trunk/; revision=2183 --- options.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 7a8c86f3..310ec24b 100644 --- a/options.c +++ b/options.c @@ -363,13 +363,13 @@ struct query *ctl; /* option record to be initialized */ else if (strcmp(optarg, "kerberos") == 0) #ifdef KERBEROS_V5 ctl->server.preauthenticate = A_KERBEROS_V5; - else if (strcmp(optarg, "kerberos_v5") == 0) - ctl->server.preauthenticate = A_KERBEROS_V5; #else ctl->server.preauthenticate = A_KERBEROS_V4; +#endif /* KERBEROS_V5 */ + else if (strcmp(optarg, "kerberos_v5") == 0) + ctl->server.preauthenticate = A_KERBEROS_V5; else if (strcmp(optarg, "kerberos_v4") == 0) ctl->server.preauthenticate = A_KERBEROS_V4; -#endif /* KERBEROS_V5 */ else { fprintf(stderr,"Invalid preauthentication `%s' specified.\n", optarg); errflag++; -- cgit v1.2.3