File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
jdk/src/windows/native/sun/security/jgss/sspi_bridge Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -648,7 +648,7 @@ gss_acquire_cred(OM_uint32 *minor_status,
648
648
if (cred->phCredK == NULL ) {
649
649
goto err;
650
650
}
651
- ss = AcquireCredentialsHandle (
651
+ ss = :: AcquireCredentialsHandle (
652
652
NULL ,
653
653
L" Kerberos" ,
654
654
cred_usage == 0 ? SECPKG_CRED_BOTH :
@@ -678,7 +678,7 @@ gss_acquire_cred(OM_uint32 *minor_status,
678
678
auth.Flags = SEC_WINNT_AUTH_IDENTITY_UNICODE;
679
679
auth.PackageList = (unsigned short *)L" Kerberos" ;
680
680
auth.PackageListLength = 8 ;
681
- ss = AcquireCredentialsHandle (
681
+ ss = :: AcquireCredentialsHandle (
682
682
NULL ,
683
683
L" Negotiate" ,
684
684
cred_usage == 0 ? SECPKG_CRED_BOTH :
@@ -936,9 +936,9 @@ gss_init_sec_context(OM_uint32 *minor_status,
936
936
auth.Flags = SEC_WINNT_AUTH_IDENTITY_UNICODE;
937
937
auth.PackageList = (unsigned short *)L" Kerberos" ;
938
938
auth.PackageListLength = 8 ;
939
- ss = AcquireCredentialsHandle (
939
+ ss = :: AcquireCredentialsHandle (
940
940
NULL ,
941
- isSPNEGO ? L" Negotiate" : L" Kerberos" ,
941
+ isSPNEGO ? (LPTSTR) L" Negotiate" : (LPTSTR) L" Kerberos" ,
942
942
SECPKG_CRED_OUTBOUND,
943
943
NULL ,
944
944
isSPNEGO ? &auth : NULL ,
You can’t perform that action at this time.
0 commit comments