From 9a944637be73570857034ab492342c54dd742cfd Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Sun, 11 Nov 2018 17:25:12 -0500 Subject: [PATCH] GUACAMOLE-422: Fix function declaration for pushing settings. --- src/protocols/rdp/rdp_settings.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/protocols/rdp/rdp_settings.h b/src/protocols/rdp/rdp_settings.h index ece399df..6955ed58 100644 --- a/src/protocols/rdp/rdp_settings.h +++ b/src/protocols/rdp/rdp_settings.h @@ -552,13 +552,17 @@ extern const char* GUAC_RDP_CLIENT_ARGS[]; /** * Save all given settings to the given freerdp instance. * + * @param client + * The guac_client object providing the settings. + * * @param guac_settings * The guac_rdp_settings object to save. * * @param rdp * The RDP instance to save settings to. */ -void guac_rdp_push_settings(guac_rdp_settings* guac_settings, freerdp* rdp); +void guac_rdp_push_settings(guac_client* client, + guac_rdp_settings* guac_settings, freerdp* rdp); /** * Returns the width of the RDP session display.