add trailing newlines for lazy parsers

This commit is contained in:
Anthony Minessale 2012-07-02 11:04:10 -05:00
parent 104bab6b92
commit 158f96651f
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static void put_text_msg(void *user_data, const uint8_t *msg, int len)
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "proto", "tdd");
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "subject", "TDD MESSAGE");
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Unique-ID", switch_core_session_get_uuid(pvt->session));
switch_event_add_body(event, "%s", (char *)msg);
switch_event_add_body(event, "%s\n\n", (char *)msg);
if (switch_core_session_get_partner(pvt->session, &other_session) == SWITCH_STATUS_SUCCESS) {