projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4534957
)
Polycom phones close the connection after reading a little bit of the firmware files...
author
Terry Wilson
<twilson@digium.com>
Wed, 17 Dec 2008 19:55:10 +0000
(19:55 +0000)
committer
Terry Wilson
<twilson@digium.com>
Wed, 17 Dec 2008 19:55:10 +0000
(19:55 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@165219
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_phoneprov.c
patch
|
blob
|
history
diff --git
a/res/res_phoneprov.c
b/res/res_phoneprov.c
index
031a033
..
9b4065f
100644
(file)
--- a/
res/res_phoneprov.c
+++ b/
res/res_phoneprov.c
@@
-446,7
+446,12
@@
static struct ast_str *phoneprov_callback(struct ast_tcptls_session_instance *se
while ((len = read(fd, buf, sizeof(buf))) > 0) {
if (fwrite(buf, 1, len, ser->f) != len) {
- ast_log(LOG_WARNING, "fwrite() failed: %s\n", strerror(errno));
+ if (errno != EPIPE) {
+ ast_log(LOG_WARNING, "fwrite() failed: %s\n", strerror(errno));
+ } else {
+ ast_debug(3, "Requester closed the connection while downloading '%s'\n", path);
+ }
+ break;
}
}