Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2020-05-22 00:33:54 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-22 00:33:54 +0300
commit18d073a71e5c86b429b410473e8f9745cdf9d81c (patch)
tree72bee5db73fdc20fc58b780313e8fec9f63992a0 /src/remmina_ssh_plugin.c
parent5d31329cebba02a412a9dc01f99bdcee6e47dbd9 (diff)
parent1d819e8a121e9fd7c3401e1d679e9c40520b850a (diff)
Merge branch 'bug/leaks' into 'master'
Refactoring remmina_debug to avoid memory leaks and overhead, should fix #2202 Closes #2203 and #2202 See merge request Remmina/Remmina!2061
Diffstat (limited to 'src/remmina_ssh_plugin.c')
-rw-r--r--src/remmina_ssh_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remmina_ssh_plugin.c b/src/remmina_ssh_plugin.c
index 57d5982f0..2b5a506e0 100644
--- a/src/remmina_ssh_plugin.c
+++ b/src/remmina_ssh_plugin.c
@@ -270,7 +270,7 @@ remmina_plugin_ssh_main_thread(gpointer data)
while (1) {
if (!remmina_ssh_init_session(ssh)) {
- remmina_debug("init session error: %s", ssh->error);
+ REMMINA_DEBUG("init session error: %s", ssh->error);
remmina_plugin_service->protocol_plugin_set_error(gp, "%s", ssh->error);
break;
}