Commit 068b64b4 068b64b4a05404856b71cc931d6772d78123ce5d by Sergey Poznyakoff

Fixed typo in comment.

1 parent 492c2cae
...@@ -423,7 +423,7 @@ util_finish (struct imap4d_command *command, int rc, const char *format, ...) ...@@ -423,7 +423,7 @@ util_finish (struct imap4d_command *command, int rc, const char *format, ...)
423 } 423 }
424 424
425 /* Clients are allowed to send literal string to the servers. this 425 /* Clients are allowed to send literal string to the servers. this
426 mean that it can me everywhere where a string is allowed. 426 means that it can occur everywhere where a string is allowed.
427 A literal is a sequence of zero or more octets (including CR and LF) 427 A literal is a sequence of zero or more octets (including CR and LF)
428 prefix-quoted with an octet count in the form of an open brace ("{"), 428 prefix-quoted with an octet count in the form of an open brace ("{"),
429 the number of octets, close brace ("}"), and CRLF. 429 the number of octets, close brace ("}"), and CRLF.
...@@ -504,7 +504,7 @@ imap4d_readline (FILE *fp) ...@@ -504,7 +504,7 @@ imap4d_readline (FILE *fp)
504 number = strtoul (line + n + 1, &sp, 10); 504 number = strtoul (line + n + 1, &sp, 10);
505 /* Client can ask for non synchronise literal, 505 /* Client can ask for non synchronise literal,
506 if a '+' is append to the octet count. */ 506 if a '+' is append to the octet count. */
507 if (*sp != '+') 507 if (*sp != '+')
508 util_send ("+ GO AHEAD\r\n"); 508 util_send ("+ GO AHEAD\r\n");
509 } 509 }
510 } 510 }
......