]> granicus.if.org Git - curl/commitdiff
now reports "krb4 enabled" is that's so
authorDaniel Stenberg <daniel@haxx.se>
Thu, 21 Sep 2000 08:51:15 +0000 (08:51 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 21 Sep 2000 08:51:15 +0000 (08:51 +0000)
lib/version.c

index 475edd129f11f65d2d241d204a32751b97f50fb3..7cd5309138af36f35f4394798b67bd230bd04af4 100644 (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;