diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-09-02 06:48:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-09-02 06:48:11 +0000 |
commit | 18a21d5802006f2da43a1035b7ccdf463e95df1e (patch) | |
tree | ba4446d72f261658faa3c946e65d06b5c4359b7f | |
parent | fcb63f30392efb13db2536630d61e067a242ef1c (diff) |
in the --libcurl output, mention that the large file stuff is only needed for
pre 7.19.0 libcurl-using apps
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index d26eecb2f..17a564772 100644 --- a/src/main.c +++ b/src/main.c @@ -3867,7 +3867,7 @@ static void dumpeasycode(struct Configurable *config) if(!memcmp((char *)c, "[m]", 3)) { #if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS > 32) fprintf(out, "#define _FILE_OFFSET_BITS %d " - "/* for curl_off_t magic */\n", + "/* for pre libcurl 7.19.0 curl_off_t magic */\n", _FILE_OFFSET_BITS); #endif } |