e43452d
From df9aafc94497610c8a8c9ccb0fcf5a67aa230087 Mon Sep 17 00:00:00 2001
e43452d
From: Lennart Poettering <lennart@poettering.net>
e43452d
Date: Sat, 7 Jan 2012 00:59:15 +0100
f1996ec
Subject: [PATCH] main: fix spelling (cherry picked from commit
e43452d
 509b6efbbe8d0486d33036892293c575bd4d0736)
e43452d
e43452d
---
e43452d
 src/main.c |   16 ++++++++--------
e43452d
 1 files changed, 8 insertions(+), 8 deletions(-)
e43452d
e43452d
diff --git a/src/main.c b/src/main.c
e43452d
index 5c28a6c..cdf32bf 100644
e43452d
--- a/src/main.c
e43452d
+++ b/src/main.c
e43452d
@@ -270,7 +270,7 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = parse_boolean(word + 18)) < 0)
e43452d
-                        log_warning("Failed to parse dump core switch %s, Ignoring.", word + 18);
e43452d
+                        log_warning("Failed to parse dump core switch %s. Ignoring.", word + 18);
e43452d
                 else
e43452d
                         arg_dump_core = r;
e43452d
 
e43452d
@@ -278,7 +278,7 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = parse_boolean(word + 20)) < 0)
e43452d
-                        log_warning("Failed to parse crash shell switch %s, Ignoring.", word + 20);
e43452d
+                        log_warning("Failed to parse crash shell switch %s. Ignoring.", word + 20);
e43452d
                 else
e43452d
                         arg_crash_shell = r;
e43452d
 
e43452d
@@ -286,7 +286,7 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = parse_boolean(word + 22)) < 0)
e43452d
-                        log_warning("Failed to parse confirm spawn switch %s, Ignoring.", word + 22);
e43452d
+                        log_warning("Failed to parse confirm spawn switch %s. Ignoring.", word + 22);
e43452d
                 else
e43452d
                         arg_confirm_spawn = r;
e43452d
 
e43452d
@@ -294,7 +294,7 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int k;
e43452d
 
e43452d
                 if (safe_atoi(word + 19, &k) < 0)
e43452d
-                        log_warning("Failed to parse crash chvt switch %s, Ignoring.", word + 19);
e43452d
+                        log_warning("Failed to parse crash chvt switch %s. Ignoring.", word + 19);
e43452d
                 else
e43452d
                         arg_crash_chvt = k;
e43452d
 
e43452d
@@ -302,21 +302,21 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = parse_boolean(word + 20)) < 0)
e43452d
-                        log_warning("Failed to parse show status switch %s, Ignoring.", word + 20);
e43452d
+                        log_warning("Failed to parse show status switch %s. Ignoring.", word + 20);
e43452d
                 else
e43452d
                         arg_show_status = r;
e43452d
         } else if (startswith(word, "systemd.default_standard_output=")) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = exec_output_from_string(word + 32)) < 0)
e43452d
-                        log_warning("Failed to parse default standard output switch %s, Ignoring.", word + 32);
e43452d
+                        log_warning("Failed to parse default standard output switch %s. Ignoring.", word + 32);
e43452d
                 else
e43452d
                         arg_default_std_output = r;
e43452d
         } else if (startswith(word, "systemd.default_standard_error=")) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = exec_output_from_string(word + 31)) < 0)
e43452d
-                        log_warning("Failed to parse default standard error switch %s, Ignoring.", word + 31);
e43452d
+                        log_warning("Failed to parse default standard error switch %s. Ignoring.", word + 31);
e43452d
                 else
e43452d
                         arg_default_std_error = r;
e43452d
 #ifdef HAVE_SYSV_COMPAT
e43452d
@@ -324,7 +324,7 @@ static int parse_proc_cmdline_word(const char *word) {
e43452d
                 int r;
e43452d
 
e43452d
                 if ((r = parse_boolean(word + 21)) < 0)
e43452d
-                        log_warning("Failed to parse SysV console switch %s, Ignoring.", word + 20);
e43452d
+                        log_warning("Failed to parse SysV console switch %s. Ignoring.", word + 20);
e43452d
                 else
e43452d
                         arg_sysv_console = r;
e43452d
 #endif
e43452d
-- 
e43452d
1.7.7.5
e43452d