Skip to content

Commit 9cc7311

Browse files
committed
mh: add missing CRLF termination to NotificationWait response body
1 parent 91c0f4c commit 9cc7311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exch/mh/emsmdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ BOOL MhEmsmdbContext::notification_response() const
432432
auto current_time = tp_now();
433433
size_t response_len = StringRenderer(response_buff, sizeof(response_buff))
434434
.add(commonHeader, "NotificationWait", request_id, client_info, session_string, current_time)
435-
.add("Transfer-Encoding: chunked\r\n");
435+
.add("Transfer-Encoding: chunked\r\n\r\n");
436436
return write_response(ID, response_buff, static_cast<int>(response_len)) &&
437437
write_response(ID, "c\r\nPROCESSING\r\n\r\n", 17) ? TRUE : false;
438438
}

0 commit comments

Comments
 (0)