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/login/user-sessions.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/login/user-sessions.c')
-rw-r--r-- | src/login/user-sessions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/user-sessions.c b/src/login/user-sessions.c index c6f8fa79e2..41d32044e9 100644 --- a/src/login/user-sessions.c +++ b/src/login/user-sessions.c @@ -70,7 +70,7 @@ int main(int argc, char*argv[]) { int r, q; char *cgroup_user_tree = NULL; - r = write_one_line_file_atomic("/run/nologin", "System is going down."); + r = write_string_file_atomic("/run/nologin", "System is going down."); if (r < 0) log_error("Failed to create /run/nologin: %s", strerror(-r)); |