We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29d2780 commit 8ab48c2Copy full SHA for 8ab48c2
security-framework/src/os/macos/mod.rs
@@ -13,9 +13,11 @@ pub mod test {
13
use keychain::SecKeychain;
14
15
pub fn identity() -> SecIdentity {
16
+ // FIXME https://github.com/rust-lang/rust/issues/30018
17
+ let keychain = keychain();
18
let mut items = p!(ItemSearchOptions::new()
19
.class(ItemClass::Identity)
- .keychains(&[keychain()])
20
+ .keychains(&[keychain])
21
.search());
22
items.identities.pop().unwrap()
23
}
0 commit comments