projects
/
sdk
/
tools
/
sdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f85a009
)
change log type for EAGAIN error
author
greatim
<jaewon81.lim@samsung.com>
Mon, 19 Dec 2016 09:14:19 +0000
(18:14 +0900)
committer
greatim
<jaewon81.lim@samsung.com>
Mon, 19 Dec 2016 09:14:19 +0000
(18:14 +0900)
change log type (error -> info) for EAGAIN error
- EAGAIN means there is no other data to read or write (not error)
Change-Id: Ibf5abf366413f7f324f04238eb43739bb78c82b8
Signed-off-by: greatim <jaewon81.lim@samsung.com>
src/utils_windows.c
patch
|
blob
|
history
diff --git
a/src/utils_windows.c
b/src/utils_windows.c
index 151fd064ad1cff24a5c29911069fb1386c3d2ccd..42f628bd3e5dcd72e4ac798daf81dbb8e4b273fb 100755
(executable)
--- a/
src/utils_windows.c
+++ b/
src/utils_windows.c
@@
-355,7
+355,7
@@
static int check_socket_err(int result) {
if(err == WSAEWOULDBLOCK) {
errno = EAGAIN;
- LOG_
ERROR
("socket error EAGAIN\n");
+ LOG_
INFO
("socket error EAGAIN\n");
}
else if(err == WSAEINTR) {
errno = EINTR;