From 8f45d6f68851869dd9bdab24cbe695c18e417635 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Tue, 14 May 2024 22:20:59 +0200 Subject: [PATCH] Fix local-echo in configuration file --- src/configfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configfile.c b/src/configfile.c index c7b8c36..697fed7 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -183,7 +183,7 @@ static void config_parse_keys(GKeyFile *key_file, char *group) config_get_string(key_file, group, "exclude-drivers", &option.exclude_devices, NULL); config_get_string(key_file, group, "exclude-tids", &option.exclude_devices, NULL); config_get_bool(key_file, group, "no-reconnect", &option.no_reconnect); - config_get_bool(key_file, group, "local-echo", &option.no_reconnect); + config_get_bool(key_file, group, "local-echo", &option.local_echo); config_get_string(key_file, group, "input-mode", &string, "normal", "hex", "line", NULL); if (string != NULL) {