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>2019-03-09 00:01:12 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-03-09 00:01:12 +0300
commit9701118f8534d52e10ffba5980da6a2b2eec3b4c (patch)
tree15c9b6c03c9dcedf846f410c053fb0fd4e9505b3 /src/remmina_ssh_plugin.h
parent88a7ee8d27ed4b3d3b41bd15d479c9526fe7081f (diff)
Resolve "SSH public key cannot be imported: Access denied for 'none'. Authentication that can continie: publickey"
- Import the public key only if available. - Added auth widget for the "Public key (automatic)" authentication type. Closes #1850
Diffstat (limited to 'src/remmina_ssh_plugin.h')
-rw-r--r--src/remmina_ssh_plugin.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/remmina_ssh_plugin.h b/src/remmina_ssh_plugin.h
index c772c62d8..d93edde9c 100644
--- a/src/remmina_ssh_plugin.h
+++ b/src/remmina_ssh_plugin.h
@@ -45,12 +45,12 @@ G_BEGIN_DECLS
void remmina_ssh_plugin_register(void);
typedef struct _RemminaProtocolSettingOpt {
- RemminaProtocolSettingType type;
- const gchar *name;
- const gchar *label;
- gboolean compact;
- gpointer opt1;
- gpointer opt2;
+ RemminaProtocolSettingType type;
+ const gchar * name;
+ const gchar * label;
+ gboolean compact;
+ gpointer opt1;
+ gpointer opt2;
} RemminaProtocolSettingOpt;
/* For callback in main thread */
@@ -59,9 +59,7 @@ void remmina_plugin_ssh_vte_terminal_set_encoding_and_pty(VteTerminal *terminal,
void remmina_plugin_ssh_vte_select_all(GtkMenuItem *menuitem, gpointer user_data);
void remmina_plugin_ssh_vte_copy_clipboard(GtkMenuItem *menuitem, gpointer user_data);
void remmina_plugin_ssh_vte_paste_clipboard(GtkMenuItem *menuitem, gpointer user_data);
-gboolean remmina_ssh_plugin_popup_menu(GtkWidget *widget, GdkEvent *event, GtkWidget *menu);
+gboolean remmina_ssh_plugin_popup_menu(GtkWidget *widget, GdkEvent *event, GtkWidget *menu);
#endif
G_END_DECLS
-
-