Bug 1148231: fix wrong error message on DataChannel failed resend of packet r=khuey

This commit is contained in:
Randell Jesup 2015-03-27 13:34:45 -04:00
Родитель 2cf094b2c9
Коммит 09b8bced54
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1125,7 +1125,7 @@ DataChannelConnection::SendDeferredMessages()
nullptr, 0,
(void *)spa, (socklen_t)sizeof(struct sctp_sendv_spa),
SCTP_SENDV_SPA,
0) < 0)) {
0)) < 0) {
if (errno == EAGAIN || errno == EWOULDBLOCK) {
// leave queued for resend
failed_send = true;