Skip to content

Commit 9f2075e

Browse files
Merge pull request #2121 from microsoft/dev/auto-sync/microsoft/main
Update submodule to latest `master` in `microsoft/main`
2 parents 74c181a + 48aa7ae commit 9f2075e

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

go

Submodule go updated 51 files

patches/0010-Implement-ms_tls_config_schannel-experiment.patch

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Subject: [PATCH] Implement ms_tls_config_schannel experiment
2424
create mode 100644 src/internal/goexperiment/exp_ms_tls_config_schannel_on.go
2525

2626
diff --git a/src/crypto/tls/fips140_test.go b/src/crypto/tls/fips140_test.go
27-
index 3bfe7fe20966a6..dbb6b56c48cc20 100644
27+
index 96273c0fe0ea2f..11d32bbc1c2551 100644
2828
--- a/src/crypto/tls/fips140_test.go
2929
+++ b/src/crypto/tls/fips140_test.go
3030
@@ -14,6 +14,7 @@ import (
@@ -467,7 +467,7 @@ index 00000000000000..b1bdb31863cc7a
467467
+ }
468468
+}
469469
diff --git a/src/crypto/tls/tls_test.go b/src/crypto/tls/tls_test.go
470-
index 39ebb9d2f1edd3..9bb2d0801111c2 100644
470+
index 4513008a5f930e..e1f868e7086061 100644
471471
--- a/src/crypto/tls/tls_test.go
472472
+++ b/src/crypto/tls/tls_test.go
473473
@@ -21,6 +21,7 @@ import (
@@ -490,7 +490,7 @@ index 39ebb9d2f1edd3..9bb2d0801111c2 100644
490490
}
491491

492492
func TestDialTimeout(t *testing.T) {
493-
@@ -1289,6 +1295,9 @@ func TestConnectionState(t *testing.T) {
493+
@@ -1324,6 +1330,9 @@ func TestConnectionState(t *testing.T) {
494494
if !isFIPSVersion(v) && fips140tls.Required() {
495495
t.Skipf("skipping test in FIPS 140-3 mode for non-FIPS version %x", v)
496496
}
@@ -500,7 +500,7 @@ index 39ebb9d2f1edd3..9bb2d0801111c2 100644
500500
var name string
501501
switch v {
502502
case VersionTLS10:
503-
@@ -1532,6 +1541,11 @@ func TestClientHelloInfo_SupportsCertificate(t *testing.T) {
503+
@@ -1567,6 +1576,11 @@ func TestClientHelloInfo_SupportsCertificate(t *testing.T) {
504504
}, ""}, // static RSA fallback
505505
}
506506
for i, tt := range tests {
@@ -512,7 +512,7 @@ index 39ebb9d2f1edd3..9bb2d0801111c2 100644
512512
err := tt.chi.SupportsCertificate(tt.c)
513513
switch {
514514
case tt.wantErr == "" && err != nil:
515-
@@ -1545,6 +1559,11 @@ func TestClientHelloInfo_SupportsCertificate(t *testing.T) {
515+
@@ -1580,6 +1594,11 @@ func TestClientHelloInfo_SupportsCertificate(t *testing.T) {
516516
}
517517

518518
func TestCipherSuites(t *testing.T) {
@@ -640,7 +640,7 @@ index 09be2eb0807932..b74b311279e81f 100644
640640
+ }
641641
+}
642642
diff --git a/src/internal/syscall/windows/zsyscall_windows.go b/src/internal/syscall/windows/zsyscall_windows.go
643-
index d087fd46f6b27b..c7b04451fed945 100644
643+
index 9526e855e8f1ba..49873764aea3a1 100644
644644
--- a/src/internal/syscall/windows/zsyscall_windows.go
645645
+++ b/src/internal/syscall/windows/zsyscall_windows.go
646646
@@ -38,6 +38,7 @@ func errnoErr(e syscall.Errno) error {
@@ -651,16 +651,16 @@ index d087fd46f6b27b..c7b04451fed945 100644
651651
modbcryptprimitives = syscall.NewLazyDLL(sysdll.Add("bcryptprimitives.dll"))
652652
modiphlpapi = syscall.NewLazyDLL(sysdll.Add("iphlpapi.dll"))
653653
modkernel32 = syscall.NewLazyDLL(sysdll.Add("kernel32.dll"))
654-
@@ -63,6 +64,8 @@ var (
655-
procQueryServiceStatus = modadvapi32.NewProc("QueryServiceStatus")
656-
procRevertToSelf = modadvapi32.NewProc("RevertToSelf")
654+
@@ -65,6 +66,8 @@ var (
655+
procSetEntriesInAclW = modadvapi32.NewProc("SetEntriesInAclW")
656+
procSetNamedSecurityInfoW = modadvapi32.NewProc("SetNamedSecurityInfoW")
657657
procSetTokenInformation = modadvapi32.NewProc("SetTokenInformation")
658658
+ procBCryptEnumContextFunctions = modbcrypt.NewProc("BCryptEnumContextFunctions")
659659
+ procBCryptFreeBuffer = modbcrypt.NewProc("BCryptFreeBuffer")
660660
procProcessPrng = modbcryptprimitives.NewProc("ProcessPrng")
661661
procGetAdaptersAddresses = modiphlpapi.NewProc("GetAdaptersAddresses")
662662
procCreateEventW = modkernel32.NewProc("CreateEventW")
663-
@@ -244,6 +247,19 @@ func SetTokenInformation(tokenHandle syscall.Token, tokenInformationClass uint32
663+
@@ -271,6 +274,19 @@ func SetTokenInformation(tokenHandle syscall.Token, tokenInformationClass uint32
664664
return
665665
}
666666

0 commit comments

Comments
 (0)