| author | Michal Schmidt <mschmidt@redhat.com> | 2012-12-12 21:24:04 (GMT) |
|---|---|---|
| committer | Michal Schmidt <mschmidt@redhat.com> | 2012-12-12 21:29:06 (GMT) |
| commit | 6b2b6f30e38d67b032d6bdc6b47ae05e143e96c5 (patch) (side-by-side diff) | |
| tree | 0b3cfeeadaa92ec51f072ad410e33c8507688d2f | |
| parent | f4443fa5976eca51661947dd4df60847213f27fa (diff) | |
| download | systemd-6b2b6f30e38d67b032d6bdc6b47ae05e143e96c5.zip systemd-6b2b6f30e38d67b032d6bdc6b47ae05e143e96c5.tar.gz | |
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
| -rw-r--r-- | src/locale/localectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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( |
