Revert "NetworkExtension: don't use exit(0) hack on Catalina"

This reverts commit 3619279a65d9a506fb13d7f24909b38a5202fa8f.

Still broken!

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2019-10-15 16:51:50 +02:00
parent 547eabb4ae
commit 437f0dc46d
1 changed files with 1 additions and 4 deletions

View File

@ -99,10 +99,7 @@ class PacketTunnelProvider: NEPacketTunnelProvider {
// HACK: This is a filthy hack to work around Apple bug 32073323 (dup'd by us as 47526107). // HACK: This is a filthy hack to work around Apple bug 32073323 (dup'd by us as 47526107).
// Remove it when they finally fix this upstream and the fix has been rolled out to // Remove it when they finally fix this upstream and the fix has been rolled out to
// sufficient quantities of users. // sufficient quantities of users.
let osVersion = ProcessInfo.processInfo.operatingSystemVersion exit(0)
if osVersion.majorVersion <= 10 && osVersion.minorVersion <= 14 {
exit(0)
}
#endif #endif
} }