typos in comment
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -30,10 +30,10 @@ imap4d_logout (struct imap4d_command *command, char *arg) | ... | @@ -30,10 +30,10 @@ imap4d_logout (struct imap4d_command *command, char *arg) |
30 | if (util_getword (arg, &sp)) | 30 | if (util_getword (arg, &sp)) |
31 | return util_finish (command, RESP_BAD, "Too many args"); | 31 | return util_finish (command, RESP_BAD, "Too many args"); |
32 | util_finish (command, RESP_OK, "Completed"); | 32 | util_finish (command, RESP_OK, "Completed"); |
33 | /* Even if a mailbox is slected, a SLECT EXAMINE or LOGOUT | 33 | /* Even if a mailbox is selected, a SELECT, EXAMINE or LOGOUT |
34 | command MAY be issued without previously issuing a CLOSE command. | 34 | command MAY be issued without previously issuing a CLOSE command. |
35 | The SELECT, EXAMINE, and LOGUT commands implictly close the | 35 | The SELECT, EXAMINE, and LOGOUT commands implictly close the |
36 | currently selected mailbox withut doing an expunge. */ | 36 | currently selected mailbox without doing an expunge. */ |
37 | if (mbox) | 37 | if (mbox) |
38 | { | 38 | { |
39 | mailbox_close (mbox); | 39 | mailbox_close (mbox); | ... | ... |
-
Please register or sign in to post a comment