Release 2.1.0 with modular CMake build

This commit is contained in:
Mario Fetka
2026-07-14 16:06:55 +02:00
parent 2c74bbef1c
commit 63711f178a
226 changed files with 122 additions and 108874 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ int pref_panel_set_values()
rt.ftp_proxy->username = strdup(in_ftp_proxy_user->value());
free(rt.ftp_proxy->passwd);
rt.ftp_proxy->passwd = strdup(in_ftp_proxy_passwd->value());
rt.ftp_proxy->type = (enum proxy_type) in_ftp_proxy_type->value();
rt.ftp_proxy->type = static_cast<proxy_type>(in_ftp_proxy_type->value());
rt.use_ftp_proxy = in_use_ftp_proxy->value() == 1 ? TRUE : FALSE;