projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e91345
)
localed: consider an unset model as a wildcard
author
Michal Sekletar
<msekleta@redhat.com>
Fri, 30 May 2014 16:20:16 +0000
(18:20 +0200)
committer
Lennart Poettering
<lennart@poettering.net>
Wed, 2 Jul 2014 14:11:50 +0000
(16:11 +0200)
src/locale/localed.c
patch
|
blob
|
history
diff --git
a/src/locale/localed.c
b/src/locale/localed.c
index
e3061c8
..
358f6c2
100644
(file)
--- a/
src/locale/localed.c
+++ b/
src/locale/localed.c
@@
-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++;
- if (streq_ptr(c->x11_
options, a[4]))
+ if (streq_ptr(c->x11_
variant, a[3])) {
matching++;
+
+ if (streq_ptr(c->x11_options, a[4]))
+ matching++;
+ }
}
}