mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 11:32:01 -05:00
Looks like "ifdef" should have been "ifndef". (Committing without review to
silence robie.)
This commit is contained in:
parent
8b840548ca
commit
db4c1bc48a
1 changed files with 2 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: gssapictx.c,v 1.20 2010/12/18 14:46:21 marka Exp $ */
|
||||
/* $Id: gssapictx.c,v 1.21 2010/12/19 21:32:35 each Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -747,10 +747,9 @@ dst_gssapi_acceptctx(gss_cred_id_t cred,
|
|||
context = *ctxout;
|
||||
|
||||
if (gssapi_keytab != NULL) {
|
||||
#ifdef ISC_PLATFORM_GSSAPI_KRB5_HEADER
|
||||
#ifndef ISC_PLATFORM_GSSAPI_KRB5_HEADER
|
||||
return (ISC_R_NOTIMPLEMENTED);
|
||||
#else
|
||||
|
||||
gret = gsskrb5_register_acceptor_identity(gssapi_keytab);
|
||||
if (gret != GSS_S_COMPLETE) {
|
||||
gss_log(3, "failed "
|
||||
|
|
|
|||
Loading…
Reference in a new issue