From: Daniel Stenberg Date: Thu, 21 Sep 2000 08:51:15 +0000 (+0000) Subject: now reports "krb4 enabled" is that's so X-Git-Tag: curl-7_3~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c62cc76fdbe01dd5b2cd322015f8e034f9149341;p=curl now reports "krb4 enabled" is that's so --- diff --git a/lib/version.c b/lib/version.c index 475edd129..7cd530913 100644 --- a/lib/version.c +++ b/lib/version.c @@ -79,8 +79,14 @@ char *curl_version(void) ptr=strchr(ptr, '\0'); #endif +#ifdef KRB4 + sprintf(ptr, " (krb4 enabled)"); + ptr += strlen(ptr); +#endif + #ifdef USE_ZLIB sprintf(ptr, " (zlib %s)", zlibVersion()); + ptr += strlen(ptr); #endif return version;