aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-11 23:13:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-11 23:13:41 +0000
commit50257d4f5031e4c206c58c7f8629640507ef46b3 (patch)
tree77f8310fc75e53803b4491349ec4f04412e56702
parent3eb4ae031c3c1f44271ad63b537ed181a773d5d5 (diff)
Check CURL_VERSION_ASYNCHDNS for feature output
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 2d41cab6d..888e9666e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1799,7 +1799,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
{"libz", CURL_VERSION_LIBZ},
{"NTLM", CURL_VERSION_NTLM},
{"GSS-Negotiate", CURL_VERSION_GSSNEGOTIATE},
- {"Debug", CURL_VERSION_DEBUG}
+ {"Debug", CURL_VERSION_DEBUG},
+ {"AsynchDNS", CURL_VERSION_ASYNCHDNS}
};
printf("Features: ");
for(i=0; i<sizeof(feats)/sizeof(feats[0]); i++) {