[client,sdl] ignore LOGON_MSG_SESSION_CONTINUE
do not display a popup for this kind of message.
This commit is contained in:
parent
cfcb363c4a
commit
1bb09089a7
@ -219,6 +219,10 @@ int sdl_logon_error_info(freerdp* instance, UINT32 data, UINT32 type)
|
||||
if (!instance || !instance->context)
|
||||
return -1;
|
||||
|
||||
/* ignore LOGON_MSG_SESSION_CONTINUE message */
|
||||
if (type == LOGON_MSG_SESSION_CONTINUE)
|
||||
return 0;
|
||||
|
||||
char* title = nullptr;
|
||||
size_t tlen = 0;
|
||||
winpr_asprintf(&title, &tlen, "[%s] info",
|
||||
|
Loading…
Reference in New Issue
Block a user