secur32: Global variable compatibility update for gcc 10.

Signed-off-by: Michael Cronenworth <mike@cchtml.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 93888fbb3e)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
stable
Michael Cronenworth 2020-01-23 17:05:25 -06:00 committed by Michael Stefaniuc
parent d36e0fa240
commit b80892d1f0
2 changed files with 2 additions and 5 deletions

View File

@ -1387,8 +1387,8 @@ static const SecPkgInfoA infoA = {
ntlm_comment_A
};
SecPkgInfoA *ntlm_package_infoA = (SecPkgInfoA *)&infoA;
SecPkgInfoW *ntlm_package_infoW = (SecPkgInfoW *)&infoW;
static SecPkgInfoA *ntlm_package_infoA = (SecPkgInfoA *)&infoA;
static SecPkgInfoW *ntlm_package_infoW = (SecPkgInfoW *)&infoW;
static SecPkgInfoW *build_package_infoW( const SecPkgInfoW *info )
{

View File

@ -190,9 +190,6 @@ void SECUR32_arc4Cleanup(arc4_info *a4i) DECLSPEC_HIDDEN;
#define NTLMSSP_NEGOTIATE_56 0x80000000
SecPkgInfoW *ntlm_package_infoW DECLSPEC_HIDDEN;
SecPkgInfoA *ntlm_package_infoA DECLSPEC_HIDDEN;
/* schannel internal interface */
typedef struct schan_imp_session_opaque *schan_imp_session;