9fc0f6
From ef543bf1d0011c0c7bfe38e097c1ef53e7027591 Mon Sep 17 00:00:00 2001
9fc0f6
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
9fc0f6
Date: Mon, 7 Jul 2014 08:55:30 -0400
9fc0f6
Subject: [PATCH] vconsole-setup: fix inverted error messages
9fc0f6
9fc0f6
Introduced in abee28c56d.
9fc0f6
9fc0f6
Pointed-out-by: Werner Fink <werner@suse.de>
9fc0f6
9fc0f6
(cherry picked from commit 3dde3f819732aaa66ab8e881305488adaea17641)
9fc0f6
9fc0f6
Related: #1002450
9fc0f6
---
9fc0f6
 src/vconsole/vconsole-setup.c | 4 ++--
9fc0f6
 1 file changed, 2 insertions(+), 2 deletions(-)
9fc0f6
9fc0f6
diff --git a/src/vconsole/vconsole-setup.c b/src/vconsole/vconsole-setup.c
9fc0f6
index 25d15af..645b1e6 100644
9fc0f6
--- a/src/vconsole/vconsole-setup.c
9fc0f6
+++ b/src/vconsole/vconsole-setup.c
9fc0f6
@@ -305,7 +305,7 @@ int main(int argc, char **argv) {
9fc0f6
 
9fc0f6
         r = font_load(vc, vc_font, vc_font_map, vc_font_unimap, &font_pid);
9fc0f6
         if (r < 0) {
9fc0f6
-                log_error("Failed to start " KBD_LOADKEYS ": %s", strerror(-r));
9fc0f6
+                log_error("Failed to start " KBD_SETFONT ": %s", strerror(-r));
9fc0f6
                 return EXIT_FAILURE;
9fc0f6
         }
9fc0f6
 
9fc0f6
@@ -314,7 +314,7 @@ int main(int argc, char **argv) {
9fc0f6
 
9fc0f6
         r = keymap_load(vc, vc_keymap, vc_keymap_toggle, utf8, &keymap_pid);
9fc0f6
         if (r < 0) {
9fc0f6
-                log_error("Failed to start " KBD_SETFONT ": %s", strerror(-r));
9fc0f6
+                log_error("Failed to start " KBD_LOADKEYS ": %s", strerror(-r));
9fc0f6
                 return EXIT_FAILURE;
9fc0f6
         }
9fc0f6