Set an error exit code for an unsuccessful reconnect

This commit is contained in:
rbarnett 2018-09-12 10:16:27 -05:00
parent b0599afbb0
commit 4e97edadec
1 changed files with 7 additions and 0 deletions

View File

@ -1589,6 +1589,13 @@ static DWORD WINAPI xf_client_thread(LPVOID param)
{
if (xf_auto_reconnect(instance))
continue;
else
{
// Indicate an unsuccessful connection attempt if reconnect
// did not succeed, but did not give some other reason.
if (freerdp_error_info(instance) == 0)
exit_code = XF_EXIT_CONN_FAILED;
}
if (freerdp_get_last_error(context) == FREERDP_ERROR_SUCCESS)
WLog_ERR(TAG, "Failed to check FreeRDP file descriptor");