diff options
author | Torstein Husebø <torstein@huseboe.net> | 2015-05-11 13:49:29 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-05-11 15:51:30 +0200 |
commit | ff9b60f38bf68eba4a47cabff14547d92e083214 (patch) | |
tree | bd60ad7e82597fdf9fa4e64f28ad1692ee43c242 /src/systemctl | |
parent | 4dda4e637e4c17a14db6cd265f36f5e8a5050367 (diff) |
treewide: Correct typos and spell plural of bus consistent
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 4c45bfc1b8..e4b301af73 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -5722,10 +5722,10 @@ static int get_file_to_edit(const char *name, const char *user_home, const char if (arg_runtime) { if (access(path, F_OK) >= 0) - return log_error_errno(EEXIST, "Refusing to create \"%s\" because it would be overriden by \"%s\" anyway.", + return log_error_errno(EEXIST, "Refusing to create \"%s\" because it would be overridden by \"%s\" anyway.", run, path); if (path2 && access(path2, F_OK) >= 0) - return log_error_errno(EEXIST, "Refusing to create \"%s\" because it would be overriden by \"%s\" anyway.", + return log_error_errno(EEXIST, "Refusing to create \"%s\" because it would be overridden by \"%s\" anyway.", run, path2); *ret_path = run; run = NULL; |