chiark / gitweb /
localed: consider an unset model as a wildcard
authorMichal Sekletar <msekleta@redhat.com>
Fri, 30 May 2014 16:20:16 +0000 (18:20 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 2 Jul 2014 14:11:50 +0000 (16:11 +0200)
src/locale/localed.c

index e3061c8d5ea46ea6187c790f519f4ce6d2bd619b..358f6c200eef31372cafbbf44c9e7aac8b7ddd77 100644 (file)
@@ -712,15 +712,16 @@ static int find_legacy_keymap(Context *c, char **new_keymap) {
                         }
                 }
 
                         }
                 }
 
-                if (matching > 0 &&
-                    streq_ptr(c->x11_model, a[2])) {
-                        matching++;
-
-                        if (streq_ptr(c->x11_variant, a[3])) {
+                if (matching > 0) {
+                        if (isempty(c->x11_model) || streq_ptr(c->x11_model, a[2])) {
                                 matching++;
 
                                 matching++;
 
-                                if (streq_ptr(c->x11_options, a[4]))
+                                if (streq_ptr(c->x11_variant, a[3])) {
                                         matching++;
                                         matching++;
+
+                                        if (streq_ptr(c->x11_options, a[4]))
+                                                matching++;
+                                }
                         }
                 }
 
                         }
                 }