File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -286,15 +286,15 @@ impl SsCredential {
286
286
/// (This is useful if [get_password](SsCredential::get_password)
287
287
/// returns an [Ambiguous](ErrorCode::Ambiguous) error.)
288
288
pub fn get_all_passwords ( & self ) -> Result < Vec < String > > {
289
- self . map_matching_items ( get_item_password, true )
289
+ self . map_matching_items ( get_item_password, false )
290
290
}
291
291
292
292
/// If there are multiple matching items for this credential, delete all of them.
293
293
///
294
294
/// (This is useful if [delete_credential](SsCredential::delete_credential)
295
295
/// returns an [Ambiguous](ErrorCode::Ambiguous) error.)
296
296
pub fn delete_all_passwords ( & self ) -> Result < ( ) > {
297
- self . map_matching_items ( delete_item, true ) ?;
297
+ self . map_matching_items ( delete_item, false ) ?;
298
298
Ok ( ( ) )
299
299
}
300
300
You can’t perform that action at this time.
0 commit comments