diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-08-01 20:28:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-01 20:28:59 +0200 |
commit | c375a7f750d0ac3ab130b8d84ebbcbbf32b96c72 (patch) | |
tree | ef5972d59413b0e98958b80421159c3999fe062d | |
parent | 980fc73d1fcda8c2a494a18dbd3262fdb97f5fbe (diff) |
getty: fix message
-rw-r--r-- | src/getty-generator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/getty-generator.c b/src/getty-generator.c index 141402bd15..7b91094b31 100644 --- a/src/getty-generator.c +++ b/src/getty-generator.c @@ -115,7 +115,7 @@ int main(int argc, char *argv[]) { /* Automatically add in a serial getty on the first * virtualizer console */ if (access("/sys/class/tty/hvc0", F_OK) == 0) { - log_debug("Automatic adding serial getty for hvc0."); + log_debug("Automatically adding serial getty for hvc0."); if (add_symlink("serial-getty@.service", "serial-getty@hvc0.service") < 0) r = EXIT_FAILURE; @@ -123,7 +123,7 @@ int main(int argc, char *argv[]) { } if (access("/sys/class/tty/xvc0", F_OK) == 0) { - log_debug("Automatic adding serial getty for xvc0."); + log_debug("Automatically adding serial getty for xvc0."); if (add_symlink("serial-getty@.service", "serial-getty@xvc0.service") < 0) r = EXIT_FAILURE; |