don't close call on UDP send error

changes/24/1624/1
Richard Fuchs 11 years ago
parent 0b202d821f
commit fd99ecf98c

@ -885,7 +885,7 @@ forward:
ret = sendmsg(sink->sfd->fd.fd, &mh, 0);
if (ret == -1) {
ret = -errno;
ret = 0; /* temp for address family mismatches */
ilog(LOG_DEBUG,"Error when sending message. Error: %s",strerror(errno));
atomic64_inc(&stream->stats.errors);
atomic64_inc(&cm->statsps.errors);

Loading…
Cancel
Save