Skip to content

Commit b06a03d

Browse files
authored
Use Bionic module from new Android overlay in Swift 6 instead (#167)
1 parent 36a4f6f commit b06a03d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/NIOSSH/Keys And Signatures/NIOSSHCertifiedPublicKey.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ import Dispatch
1717
import NIOCore
1818
#if canImport(Darwin)
1919
import Darwin
20-
#else
20+
#elseif canImport(Glibc)
2121
import Glibc
22-
#endif // canImport(Darwin)
22+
#elseif canImport(Bionic)
23+
import Bionic
24+
#endif
2325

2426
/// A ``NIOSSHCertifiedPublicKey`` is an SSH public key combined with an SSH certificate.
2527
///

0 commit comments

Comments
 (0)