diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-01 16:24:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-01 16:24:26 +0000 |
commit | c9b23ca0552a0364ac6cc69c540f04528f4e1cfe (patch) | |
tree | d07064593f7ead122d663a99d314933611d37b87 /src | |
parent | 7983ec84a7e72c0e4baf11ad5f6bb3c5ef34468e (diff) |
check for CURL_VERSION_LARGEFILE in the feature bitmask
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index ffe6ba854..ae0d1239c 100644 --- a/src/main.c +++ b/src/main.c @@ -1910,7 +1910,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ {"GSS-Negotiate", CURL_VERSION_GSSNEGOTIATE}, {"Debug", CURL_VERSION_DEBUG}, {"AsynchDNS", CURL_VERSION_ASYNCHDNS}, - {"SPNEGO", CURL_VERSION_SPNEGO} + {"SPNEGO", CURL_VERSION_SPNEGO}, + {"Largefile", CURL_VERSION_LARGEFILE} }; printf("Features: "); for(i=0; i<sizeof(feats)/sizeof(feats[0]); i++) { |