network: s/write()/lxc_write_nointr()/g

parent c72cda4e
...@@ -1374,7 +1374,7 @@ static int proc_sys_net_write(const char *path, const char *value) ...@@ -1374,7 +1374,7 @@ static int proc_sys_net_write(const char *path, const char *value)
if (fd < 0) if (fd < 0)
return -errno; return -errno;
if (write(fd, value, strlen(value)) < 0) if (lxc_write_nointr(fd, value, strlen(value)) < 0)
err = -errno; err = -errno;
close(fd); close(fd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment