summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-05-15 14:34:33 +0200
committerLennart Poettering <lennart@poettering.net>2012-05-15 14:35:51 +0200
commit03ad1136ba6ddaeca626aa24362dab764c7e2398 (patch)
treece6974472210b41e157861de54a475e7cd9718fd
parent04fb63514d1c98fdf9c9549639a1f6d9812444ac (diff)
tmpfiles: if we are supposed to write a string to a file, it's OK if we can't write the trailing newline
-rw-r--r--src/shared/util.c3
-rw-r--r--src/tmpfiles/tmpfiles.c9
2 files changed, 9 insertions, 3 deletions
diff --git a/src/shared/util.c b/src/shared/util.c
index d6af92745..0b81e1c4f 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -597,7 +597,8 @@ int write_one_line_file(const char *fn, const char *line) {
assert(fn);
assert(line);
- if (!(f = fopen(fn, "we")))
+ f = fopen(fn, "we");
+ if (!f)
return -errno;
errno = 0;
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
index 235617853..2ee0601e6 100644
--- a/src/tmpfiles/tmpfiles.c
+++ b/src/tmpfiles/tmpfiles.c
@@ -617,8 +617,13 @@ static int create_item(Item *i) {
iovec[1].iov_len = 1;
n = writev(fd, iovec, 2);
- if (n < 0 || (size_t) n != l+1) {
- log_error("Failed to write file %s: %s", i->path, n < 0 ? strerror(-n) : "Short");
+
+ /* It's OK if we don't write the trailing
+ * newline, hence we check for l, instead of
+ * l+1 here. Files in /sys often refuse
+ * writing of the trailing newline. */
+ if (n < 0 || (size_t) n < l) {
+ log_error("Failed to write file %s: %s", i->path, n < 0 ? strerror(-n) : "Short write");
close_nointr_nofail(fd);
return n < 0 ? n : -EIO;
}