2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00

ca-certificates: fix program

This commit is contained in:
Dylan Araps 2019-08-26 08:32:47 +00:00
parent 4bf335ef98
commit 0f15bf79ef
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
c979c6f35714a0fedb17d9e5ba37adecbbc91a8faf4186b4e23d6f9ca44fd6cb certdata.txt c979c6f35714a0fedb17d9e5ba37adecbbc91a8faf4186b4e23d6f9ca44fd6cb certdata.txt
064f7d41106cd9efa08b9e68cf049f44e3be55666bd2ab96d02c508293b8dce7 certdata2pem.c 1a2b0a56e47463d8d5690a846bb3c8db29ea04ff774088ce22bf6b6542bac639 certdata2pem.c
0427333826d678c885495ef11f3bb70cd340a5238f2ce34a7879c581887603b7 update-ca-certificates 0427333826d678c885495ef11f3bb70cd340a5238f2ce34a7879c581887603b7 update-ca-certificates

View File

@ -130,7 +130,7 @@ int main(void)
} }
} }
fclose(f); fclose(f);
while (blacklist) { while (blacklist) {
node = (char**)*blacklist; node = (char**)*blacklist;
free(blacklist); free(blacklist);
@ -139,4 +139,4 @@ int main(void)
free(line); free(line);
free(label); free(label);
return 0; return 0;
} }