now reports "krb4 enabled" is that's so

This commit is contained in:
Daniel Stenberg 2000-09-21 08:51:15 +00:00
parent 7bac857fdd
commit c62cc76fdb
1 changed files with 6 additions and 0 deletions

View File

@ -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;