projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d85091b
)
sendall(): Replace send() by write().
author
Andre Noll
<maan@systemlinux.org>
Fri, 1 Feb 2008 23:02:33 +0000
(
00:02
+0100)
committer
Andre Noll
<maan@systemlinux.org>
Fri, 1 Feb 2008 23:02:33 +0000
(
00:02
+0100)
With zero flags parameter, send() is equivalent to write(2).
net.c
patch
|
blob
|
history
diff --git
a/net.c
b/net.c
index 10fc121912b8d242b7ca15a8081c2e7e490e44c5..09963f2e8b4b55d4931b8dd5236aecc2a9012015 100644
(file)
--- a/
net.c
+++ b/
net.c
@@
-362,7
+362,7
@@
static int sendall(int fd, const char *buf, size_t *len)
assert(total);
*len = 0;
while (*len < total) {
- int ret =
send(fd, buf + *len, total - *len, 0
);
+ int ret =
write(fd, buf + *len, total - *len
);
if (ret == -1)
return -ERRNO_TO_PARA_ERROR(errno);
*len += ret;