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 +- src/core/execute.c | 2 +- src/core/machine-id-setup.c | 2 +- src/core/unit.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core') 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)); diff --git a/src/core/execute.c b/src/core/execute.c index f7353579e9..91815b838e 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1195,7 +1195,7 @@ int exec_spawn(ExecCommand *command, snprintf(t, sizeof(t), "%i", context->oom_score_adjust); char_array_0(t); - if (write_one_line_file("/proc/self/oom_score_adj", t) < 0) { + if (write_string_file("/proc/self/oom_score_adj", t) < 0) { err = -errno; r = EXIT_OOM_ADJUST; goto fail_child; diff --git a/src/core/machine-id-setup.c b/src/core/machine-id-setup.c index 146c5653c9..51074fea44 100644 --- a/src/core/machine-id-setup.c +++ b/src/core/machine-id-setup.c @@ -216,7 +216,7 @@ int machine_id_setup(void) { * /run/machine-id as a replacement */ m = umask(0022); - r = write_one_line_file("/run/machine-id", id); + r = write_string_file("/run/machine-id", id); umask(m); if (r < 0) { diff --git a/src/core/unit.c b/src/core/unit.c index 91a00edf71..a0d36569a8 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2910,7 +2910,7 @@ int unit_write_drop_in(Unit *u, bool runtime, const char *name, const char *data return r; mkdir_p(p, 0755); - return write_one_line_file_atomic_label(q, data); + return write_string_file_atomic_label(q, data); } int unit_remove_drop_in(Unit *u, bool runtime, const char *name) { -- cgit v1.2.3-54-g00ecf