diff options
Diffstat (limited to 'docs/examples/http2-upload.c')
-rw-r--r-- | docs/examples/http2-upload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c index 9485825b3..742177f69 100644 --- a/docs/examples/http2-upload.c +++ b/docs/examples/http2-upload.c @@ -39,7 +39,7 @@ #include <curl/mprintf.h> #ifndef CURLPIPE_MULTIPLEX -/* This little trick will just make sure that we don't enable pipelining for +/* This little trick will just make sure that we do not enable pipelining for libcurls old enough to not have this symbol. It is _not_ defined to zero in a recent libcurl header. */ #define CURLPIPE_MULTIPLEX 0 @@ -124,7 +124,7 @@ int my_trace(CURL *handle, curl_infotype type, known_offset = 1; } secs = epoch_offset + tv.tv_sec; - now = localtime(&secs); /* not thread safe but we don't care */ + now = localtime(&secs); /* not thread safe but we do not care */ curl_msnprintf(timebuf, sizeof(timebuf), "%02d:%02d:%02d.%06ld", now->tm_hour, now->tm_min, now->tm_sec, (long)tv.tv_usec); |