1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Print "Metalink" in Features if Metalink support is enabled.

This commit is contained in:
Tatsuhiro Tsujikawa 2012-05-09 00:19:17 +09:00 committed by Daniel Stenberg
parent dde279ed31
commit 963bcde476

View File

@ -1566,6 +1566,9 @@ ParameterError getparameter(char *flag, /* f or -long-flag */
if(curlinfo->features & feats[i].bitmask)
printf("%s ", feats[i].name);
}
#ifdef HAVE_LIBMETALINK
printf("Metalink ");
#endif /* HAVE_LIBMETALINK */
puts(""); /* newline */
}
}