Map gateway errors in freerdp_get_last_error_name

This commit is contained in:
Armin Novak 2019-10-01 09:47:26 +02:00
parent f4d169fb75
commit f78c5f5c44

View File

@ -31,6 +31,7 @@
#include "connection.h"
#include "message.h"
#include "buildflags.h"
#include "gateway/rpc_fault.h"
#include <assert.h>
@ -823,7 +824,7 @@ const char* freerdp_get_last_error_name(UINT32 code)
break;
default:
name = "Unknown error class";
name = rpc_error_to_string(code);
break;
}
@ -851,7 +852,7 @@ const char* freerdp_get_last_error_string(UINT32 code)
break;
default:
string = "Unknown error class";
string = rpc_error_to_string(code);
break;
}