From 574d5f2dfc25226afc718aa5ba1a145fe5cad221 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 2 Apr 2013 20:31:42 +0200 Subject: util: rename write_one_line_file() to write_string_file() You can write much more than just one line with this call (and we frequently do), so let's correct the naming. --- src/core/cgroup-attr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/cgroup-attr.c') diff --git a/src/core/cgroup-attr.c b/src/core/cgroup-attr.c index 2ab4d4623e..7e3e08eabb 100644 --- a/src/core/cgroup-attr.c +++ b/src/core/cgroup-attr.c @@ -44,7 +44,7 @@ int cgroup_attribute_apply(CGroupAttribute *a, CGroupBonding *b) { if (r < 0) return r; - r = write_one_line_file(path, v ? v : a->value); + r = write_string_file(path, v ? v : a->value); if (r < 0) log_warning("Failed to write '%s' to %s: %s", v ? v : a->value, path, strerror(-r)); -- cgit v1.2.3-54-g00ecf