osxkeychain: erase all matching credentials

Other credential managers erased all matching credentials, as indicated
by a test case that osxkeychain failed:

    15 - helper (osxkeychain) erases all matching credentials

Signed-off-by: Bo Anderson <mail@boanderson.me>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Bo Anderson 2024-02-17 23:34:54 +00:00 коммит произвёл Junio C Hamano
Родитель 9abe31f5f1
Коммит 9032bcad82
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -182,7 +182,8 @@ static OSStatus delete_internet_password(void)
if (!protocol || !host)
return -1;
attrs = CREATE_SEC_ATTRIBUTES(NULL);
attrs = CREATE_SEC_ATTRIBUTES(kSecMatchLimit, kSecMatchLimitAll,
NULL);
result = SecItemDelete(attrs);
CFRelease(attrs);