Phone updates

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@769 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 23 years ago
parent 736bb7c6dc
commit fd6cc08ac8

@ -584,11 +584,9 @@ static int phone_write(struct ast_channel *ast, struct ast_frame *frame)
expected=4; expected=4;
} else { } else {
res = phone_write_buf(p, pos, expected, maxfr); res = phone_write_buf(p, pos, expected, maxfr);
if (res > 0)
res = 0;
} }
if (res != expected) { if (res != expected) {
if (errno != EAGAIN) { if ((errno != EAGAIN) && (errno != EINTR)) {
if (res < 0) if (res < 0)
ast_log(LOG_WARNING, "Write returned error (%s)\n", strerror(errno)); ast_log(LOG_WARNING, "Write returned error (%s)\n", strerror(errno));
/* /*

Loading…
Cancel
Save