Skip to content

Commit 6bcd907

Browse files
committed
Added comment for issue #915
1 parent d30b666 commit 6bcd907

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

remmina/src/remmina.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ static gint remmina_on_command_line(GApplication *app, GApplicationCommandLine *
127127
executed = TRUE;
128128
}
129129

130+
/** @todo This should be a G_OPTION_ARG_FILENAME_ARRAY (^aay) so that
131+
* we can implement multi profile connection:
132+
* https://github.com/FreeRDP/Remmina/issues/915
133+
*/
130134
if (g_variant_dict_lookup(opts, "connect", "^ay", &str)) {
131135
remmina_exec_command(REMMINA_COMMAND_CONNECT, str);
132136
g_free(str);

remmina/src/remmina_exec.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,10 @@ void remmina_exec_command(RemminaCommandType command, const gchar* data)
174174
break;
175175

176176
case REMMINA_COMMAND_CONNECT:
177+
/** @todo This should be a G_OPTION_ARG_FILENAME_ARRAY (^aay) so that
178+
* we can implement multi profile connection:
179+
* https://github.com/FreeRDP/Remmina/issues/915
180+
*/
177181
remmina_connection_window_open_from_filename(data);
178182
break;
179183

0 commit comments

Comments
 (0)