diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-02 20:31:42 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-03 20:12:56 +0200 |
commit | 574d5f2dfc25226afc718aa5ba1a145fe5cad221 (patch) | |
tree | 01fc6b70bd622d40da1c60fd04d1f15c85aebd93 /src/binfmt/binfmt.c | |
parent | b6e8f1f03dc8b7579f8c6b00372f136d74c45232 (diff) |
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.
Diffstat (limited to 'src/binfmt/binfmt.c')
-rw-r--r-- | src/binfmt/binfmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/binfmt/binfmt.c b/src/binfmt/binfmt.c index 909eef732c..9ca1e604c4 100644 --- a/src/binfmt/binfmt.c +++ b/src/binfmt/binfmt.c @@ -62,7 +62,7 @@ static int delete_rule(const char *rule) { if (!fn) return log_oom(); - return write_one_line_file(fn, "-1"); + return write_string_file(fn, "-1"); } static int apply_rule(const char *rule) { @@ -70,7 +70,7 @@ static int apply_rule(const char *rule) { delete_rule(rule); - r = write_one_line_file("/proc/sys/fs/binfmt_misc/register", rule); + r = write_string_file("/proc/sys/fs/binfmt_misc/register", rule); if (r < 0) { log_error("Failed to add binary format: %s", strerror(-r)); return r; @@ -197,7 +197,7 @@ int main(int argc, char *argv[]) { } /* Flush out all rules */ - write_one_line_file("/proc/sys/fs/binfmt_misc/status", "-1"); + write_string_file("/proc/sys/fs/binfmt_misc/status", "-1"); STRV_FOREACH(f, files) { k = apply_file(*f, true); |