rail/server: rename rdpContext to rdpcontext
Fixes a compilation error when mixing c++ and c code.
This commit is contained in:
parent
326a448952
commit
29dee84a2b
@ -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;
|
||||
|
@ -130,7 +130,7 @@ struct _rail_server_context
|
||||
psRailServerGetAppidRespEx ServerGetAppidRespEx;
|
||||
|
||||
RailServerPrivate* priv;
|
||||
rdpContext* rdpContext;
|
||||
rdpContext* rdpcontext;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -38,7 +38,7 @@ BOOL pf_rail_context_init(pServerContext* ps)
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
rail->rdpContext = (rdpContext*)ps;
|
||||
rail->rdpcontext = (rdpContext*)ps;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user