2013-01-23 14:44:07 +01:00
|
|
|
From 6b2b6f30e38d67b032d6bdc6b47ae05e143e96c5 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Michal Schmidt <mschmidt@redhat.com>
|
|
|
|
Date: Wed, 12 Dec 2012 22:24:04 +0100
|
|
|
|
Subject: [PATCH] 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
|
|
|
|
---
|
|
|
|
src/locale/localectl.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2013-03-20 11:29:34 +01:00
|
|
|
Index: systemd-195/src/locale/localectl.c
|
|
|
|
===================================================================
|
|
|
|
--- systemd-195.orig/src/locale/localectl.c
|
|
|
|
+++ systemd-195/src/locale/localectl.c
|
|
|
|
@@ -535,7 +535,7 @@ static int set_x11_keymap(DBusConnection
|
2013-01-23 14:44:07 +01:00
|
|
|
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(
|