[systemd-commits] src/locale

Michal Schmidt michich at kemper.freedesktop.org
Wed Dec 12 13:29:30 PST 2012


 src/locale/localectl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6b2b6f30e38d67b032d6bdc6b47ae05e143e96c5
Author: Michal Schmidt <mschmidt at redhat.com>
Date:   Wed Dec 12 22:24:04 2012 +0100

    localectl: fix dbus call arguments in set_x11_keymap
    
    Fixes an assertion failure in the dbus lib.
    https://bugzilla.redhat.com/show_bug.cgi?id=882212

diff --git a/src/locale/localectl.c b/src/locale/localectl.c
index fa73bca..383a17d 100644
--- a/src/locale/localectl.c
+++ b/src/locale/localectl.c
@@ -537,7 +537,7 @@ static int set_x11_keymap(DBusConnection *bus, char **args, unsigned n) {
         layout = args[1];
         model = n > 2 ? args[2] : "";
         variant = n > 3 ? args[3] : "";
-        options = n > 3 ? args[4] : "";
+        options = n > 4 ? args[4] : "";
         b = arg_convert;
 
         return bus_method_call_with_reply(



More information about the systemd-commits mailing list