GUACAMOLE-203: Fix function prototype to remove const.

This commit is contained in:
Nick Couchman 2017-06-25 14:56:50 -04:00
parent 650f7a0a32
commit a5efbb5933

View File

@ -98,7 +98,7 @@ void guac_common_ssh_uninit();
* if the connection or authentication were not successful. * if the connection or authentication were not successful.
*/ */
guac_common_ssh_session* guac_common_ssh_create_session(guac_client* client, guac_common_ssh_session* guac_common_ssh_create_session(guac_client* client,
const char* hostname, const char* port, guac_common_ssh_user* user, const int keepalive); const char* hostname, const char* port, guac_common_ssh_user* user, int keepalive);
/** /**
* Disconnects and destroys the given SSH session, freeing all associated * Disconnects and destroys the given SSH session, freeing all associated