[REM-3342] Add ifdef to allow compilation without libssh

This commit is contained in:
myheroyuki 2025-04-10 21:37:05 +09:00
parent aa88ea80b1
commit a3838d1cae

View File

@ -941,7 +941,7 @@ static gpointer ssh_tunnel_auth_list[] =
static void remmina_file_editor_run_import_export_dialog(gpointer user_data, gint type)
{
#ifdef HAVE_LIBSSH
RemminaFileEditor* gfe = (RemminaFileEditor*)user_data;
RemminaFileEditorPriv *priv = gfe->priv;
const gchar *cs;
@ -1046,6 +1046,7 @@ static void remmina_file_editor_run_import_export_dialog(gpointer user_data, gin
g_free(cs);
}
gtk_widget_destroy(dialog);
#endif
}