From 800052dc50ace9748f607afc8f451afac948736b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 2 Dec 2003 13:27:29 +0000 Subject: use the HAVE_KRB4 define instead of just KRB4 --- lib/security.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/security.c') diff --git a/lib/security.c b/lib/security.c index 1c83a18f9..16746cdc9 100644 --- a/lib/security.c +++ b/lib/security.c @@ -41,7 +41,7 @@ #include "setup.h" #ifndef CURL_DISABLE_FTP -#ifdef KRB4 +#ifdef HAVE_KRB4 #define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ #include @@ -90,7 +90,7 @@ static struct Curl_sec_client_mech *mechs[] = { #ifdef KRB5 /* not supported */ #endif -#ifdef KRB4 +#ifdef HAVE_KRB4 &Curl_krb4_client_mech, #endif NULL @@ -478,5 +478,5 @@ Curl_sec_end(struct connectdata *conn) conn->mech=NULL; } -#endif /* KRB4 */ +#endif /* HAVE_KRB4 */ #endif /* CURL_DISABLE_FTP */ -- cgit v1.2.3