secur32: Global variable compatibility update for gcc 10.
Signed-off-by: Michael Cronenworth <mike@cchtml.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e402fdf364
commit
93888fbb3e
|
@ -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 )
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue