ecore_con: fix test to actually send a NULL terminated string.

This commit is contained in:
Cedric BAIL 2015-07-28 02:55:32 +02:00
parent 004f2b49a9
commit 1d27699bc6
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ _eet_svr_cnct_cb(void *data, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA
ecore_con_eet_send(reply, TEST_STREAM, &toSend);
else
ecore_con_eet_raw_send(reply, TEST_STREAM, "message", rawMsg,
strlen(rawMsg));
strlen(rawMsg) + 1);
return EINA_TRUE;
}