diff --git a/lib/ftp.c b/lib/ftp.c index abcc9d25a9..811e58508b 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -3794,7 +3794,7 @@ static CURLcode ftp_done_check_partial(struct Curl_easy *data, (data->state.infilesize != -1) && /* upload with known size */ ((!data->set.crlf && !data->state.prefer_ascii && /* no conversion */ (data->state.infilesize != data->req.writebytecount)) || - ((data->set.crlf || data->state.prefer_ascii) && /* maybe crlf conv */ + ((data->set.crlf || data->state.prefer_ascii) && /* maybe CRLF conv */ (data->state.infilesize > data->req.writebytecount)) )) { failf(data, "Uploaded unaligned file size (%" FMT_OFF_T diff --git a/lib/pop3.c b/lib/pop3.c index 071872687c..9ebe7ce4bf 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -1407,7 +1407,7 @@ static const struct SASLproto saslpop3 = { pop3_continue_auth, /* Send authentication continuation */ pop3_cancel_auth, /* Send authentication cancellation */ pop3_get_message, /* Get SASL response message */ - 255 - 8, /* Max line len - strlen("AUTH ") - 1 space - crlf */ + 255 - 8, /* Max line len - strlen("AUTH ") - 1 space - CRLF */ '*', /* Code received when continuation is expected */ '+', /* Code to receive upon authentication success */ SASL_AUTH_DEFAULT, /* Default mechanisms */ diff --git a/lib/sendf.c b/lib/sendf.c index a5aad668f5..78cda23cfe 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -1128,7 +1128,7 @@ static CURLcode do_init_reader_stack(struct Curl_easy *data, data->req.reader.stack = r; clen = r->crt->total_length(data, r); - /* if we do not have 0 length init, and crlf conversion is wanted, + /* if we do not have 0 length init, and CRLF conversion is wanted, * add the reader for it */ if(clen && (data->set.crlf #ifdef CURL_PREFER_LF_LINEENDS diff --git a/lib/smtp.c b/lib/smtp.c index a37a573381..616fa8c00f 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -1657,7 +1657,7 @@ static const struct SASLproto saslsmtp = { smtp_continue_auth, /* Send authentication continuation */ smtp_cancel_auth, /* Cancel authentication */ smtp_get_message, /* Get SASL response message */ - 512 - 8, /* Max line len - strlen("AUTH ") - 1 space - crlf */ + 512 - 8, /* Max line len - strlen("AUTH ") - 1 space - CRLF */ 334, /* Code received when continuation is expected */ 235, /* Code to receive upon authentication success */ SASL_AUTH_DEFAULT, /* Default mechanisms */ diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index 8f2ab642cd..8144f81be8 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -186,7 +186,7 @@ static struct bf bfs[2]; static int nextone; /* index of next buffer to use */ static int current; /* index of buffer in use */ - /* control flags for crlf conversions */ + /* control flags for CRLF conversions */ static int newline = 0; /* fillbuf: in middle of newline expansion */ static int prevchar = -1; /* putbuf: previous char (cr check) */ @@ -296,7 +296,7 @@ static void nak(int error) */ static struct tftphdr *rw_init(int x) { - newline = 0; /* init crlf flag */ + newline = 0; /* init CRLF flag */ prevchar = -1; bfs[0].counter = BF_ALLOC; /* pass out the first buffer */ current = 0;