Don't pass MSG_NOSIGNAL to send as we Want to know about errors

immediately.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-12-20 12:30:31 +00:00
parent edf9eee500
commit 09cbfb0e36
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ _ecore_drm_socket_send(int opcode, int fd, void *data, size_t bytes)
/* DBG("Control Len: %d", (int)cmsg->cmsg_len); */
errno = 0;
size = sendmsg(_ecore_drm_sockets[1], &msg, MSG_NOSIGNAL);
size = sendmsg(_ecore_drm_sockets[1], &msg, 0);
if (errno != 0)
{
DBG("Error Sending Message: %m");