rail/server: rename rdpContext to rdpcontext

Fixes a compilation error when mixing c++ and c code.
This commit is contained in:
Kobi Mizrachi 2019-12-30 10:08:26 +02:00 committed by akallabeth
parent 326a448952
commit 29dee84a2b
3 changed files with 4 additions and 4 deletions

View File

@ -1360,8 +1360,8 @@ static DWORD WINAPI rail_server_thread(LPVOID arg)
}
}
if (error && context->rdpContext)
setChannelError(context->rdpContext, error, "rail_server_thread reported an error");
if (error && context->rdpcontext)
setChannelError(context->rdpcontext, error, "rail_server_thread reported an error");
ExitThread(error);
return error;

View File

@ -130,7 +130,7 @@ struct _rail_server_context
psRailServerGetAppidRespEx ServerGetAppidRespEx;
RailServerPrivate* priv;
rdpContext* rdpContext;
rdpContext* rdpcontext;
};
#ifdef __cplusplus

View File

@ -38,7 +38,7 @@ BOOL pf_rail_context_init(pServerContext* ps)
return FALSE;
}
rail->rdpContext = (rdpContext*)ps;
rail->rdpcontext = (rdpContext*)ps;
return TRUE;
}