communication: if read == 0 => it's ok
parent
107ab48deb
commit
8b4481da9f
|
@ -59,7 +59,7 @@ int file_read (const char *path, char **buf, size_t *msize)
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int ret2 = 0;
|
int ret2 = 0;
|
||||||
ret = read (fd, *buf, BUFSIZ);
|
ret = read (fd, *buf, BUFSIZ);
|
||||||
if (ret <= 0) {
|
if (ret < 0) {
|
||||||
fprintf (stderr, "err: read %s\n", path);
|
fprintf (stderr, "err: read %s\n", path);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Reference in New Issue