aboutsummaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-02 13:27:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-02 13:27:29 +0000
commit800052dc50ace9748f607afc8f451afac948736b (patch)
treef601bf25f7faa8d689296a869e58c0818fe3ce57 /lib/version.c
parentd4629fd3957cf991c1a7a23757678b4b159ab187 (diff)
use the HAVE_KRB4 define instead of just KRB4
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/version.c b/lib/version.c
index 3e8c88513..2e4d532ff 100644
--- a/lib/version.c
+++ b/lib/version.c
@@ -102,7 +102,7 @@ char *curl_version(void)
(void)num; /* no compiler warning please */
#endif
-#ifdef KRB4
+#ifdef HAVE_KRB4
sprintf(ptr, " krb4");
ptr += strlen(ptr);
#endif
@@ -167,7 +167,7 @@ static curl_version_info_data version_info = {
#ifdef ENABLE_IPV6
| CURL_VERSION_IPV6
#endif
-#ifdef KRB4
+#ifdef HAVE_KRB4
| CURL_VERSION_KERBEROS4
#endif
#ifdef USE_SSLEAY