From 25dea0b56595d04d9ef9e1eb554b9047ef12dedd Mon Sep 17 00:00:00 2001 From: Heiko Carstens Date: Fri, 16 Sep 2011 10:28:43 +0200 Subject: [PATCH] lib,path: use write_all() From: Heiko Carstens Since write() doesn't necessarily write the complete buffer with one call we better use write_all() which takes care of this. Signed-off-by: Heiko Carstens --- lib/path.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/path.c b/lib/path.c index e2bb398026..54b8942f45 100644 --- a/lib/path.c +++ b/lib/path.c @@ -27,6 +27,7 @@ #include #include +#include "writeall.h" #include "cpuset.h" #include "path.h" #include "nls.h" @@ -132,7 +133,7 @@ path_writestr(const char *str, const char *path, ...) va_start(ap, path); fd = path_vopen(O_WRONLY, path, ap); va_end(ap); - result = write(fd, str, strlen(str)); + result = write_all(fd, str, strlen(str)); close(fd); return result; } -- 2.47.3