summaryrefslogtreecommitdiffstats
path: root/xrdp/lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'xrdp/lang.c')
-rw-r--r--xrdp/lang.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/xrdp/lang.c b/xrdp/lang.c
index 998c6d94..0623b91e 100644
--- a/xrdp/lang.c
+++ b/xrdp/lang.c
@@ -209,6 +209,11 @@ get_keymaps(int keylayout, struct xrdp_keymap* keymap)
filename = (char*)g_malloc(256, 0);
/* check if there is a keymap file */
g_snprintf(filename, 255, "%s/km-%4.4x.ini", XRDP_CFG_PATH, keylayout);
+ /* if the file does not exist, try again with 'en-us' as fallback */
+ if (!g_file_exist(filename))
+ {
+ g_snprintf(filename, 255, "%s/km-0409.ini", XRDP_CFG_PATH);
+ }
if (g_file_exist(filename))
{
fd = g_file_open(filename);