Commit f630b693 f630b6930966bf2bd63603df7f198e310b157f45 by Sergey Poznyakoff

(imap4d_store0): Send \r\n at the end of the unsolicited response.

1 parent 51e39ac0
...@@ -142,7 +142,7 @@ imap4d_store0 (char *arg, int isuid, char *resp, size_t resplen) ...@@ -142,7 +142,7 @@ imap4d_store0 (char *arg, int isuid, char *resp, size_t resplen)
142 { 142 {
143 util_send ("* %d FETCH (", msgno); 143 util_send ("* %d FETCH (", msgno);
144 fetch_flags0 ("FLAGS", msg, isuid); 144 fetch_flags0 ("FLAGS", msg, isuid);
145 util_send (")\n"); 145 util_send (")\r\n");
146 } 146 }
147 free (p); 147 free (p);
148 /* Update the flags of uid table. */ 148 /* Update the flags of uid table. */
......