diff options
author | Gergely Nagy <ngg@tresorit.com> | 2019-07-03 14:31:31 +0200 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2019-07-06 23:25:20 -0400 |
commit | cf4255c8476ba919456a69099d02245419ff6ac3 (patch) | |
tree | b70100db4f27c5c2988618c32cfa7d1948dda5bd /lib/transfer.c | |
parent | 21e2df801556dcdc451c3372248c481552451d7f (diff) | |
download | curl-cf4255c8476ba919456a69099d02245419ff6ac3.tar.gz |
lib: Use UTF-8 encoding in comments
Some editors and IDEs assume that source files use UTF-8 file encodings.
It also fixes the build with MSVC when /utf-8 command line option is
used (this option is mandatory for some other open-source projects, this
is useful when using the same options is desired for building all
libraries of a project).
Closes https://github.com/curl/curl/pull/4087
Diffstat (limited to 'lib/transfer.c')
-rw-r--r-- | lib/transfer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index b25359196..b9bb5f6ed 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -225,7 +225,7 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, size_t bytes, if(data->state.trailers_state == TRAILERS_SENDING) { /* if we're here then that means that we already sent the last empty chunk but we didn't send a final CR LF, so we sent 0 CR LF. We then start - pulling trailing data until we ²have no more at which point we + pulling trailing data until we have no more at which point we simply return to the previous point in the state machine as if nothing happened. */ |