Skip to content

Commit 85c66a5

Browse files
committed
Lowers corecrypto ccsrp runtime check on macOS to 10.16
Initial Big Sur betas are internally versioned 10.16, so this accounts for them in addition to the eventual shipping version.
1 parent 3c65c96 commit 85c66a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dependencies/corecrypto/ccsrp.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#if TARGET_OS_IPHONE
1919
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){ 14, 0, 0 }])
2020
#else
21-
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){ 11, 0, 0 }])
21+
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion){ 10, 16, 0 }])
2222
#endif
2323
{
2424
return SRP_CCN((ccsrp_ctx_t)(srp));

0 commit comments

Comments
 (0)