Update TODO

This commit is contained in:
Daan De Meyer
2025-02-27 10:38:15 +01:00
parent 8c0098d486
commit d9c7d47f99
2 changed files with 3 additions and 1 deletions

2
TODO
View File

@@ -127,6 +127,8 @@ Deprecations and removals:
Features:
* Maybe rename pkcs7 and public verbs of systemd-keyutil to be more verb like.
* sd-boot: do something useful if we find exactly zero entries (ignoring items
such as reboot/poweroff/factory reset). Show a help text or so.

View File

@@ -558,7 +558,7 @@ static int verb_sign(int argc, char *argv[], void *userdata) {
return r;
_cleanup_(PKCS7_freep) PKCS7 *p7 = NULL;
PKCS7_SIGNER_INFO *si;
PKCS7_SIGNER_INFO *si = NULL; /* avoid false maybe-uninitialized warning */
r = pkcs7_new_with_attributes(certificate, private_key, signed_attributes, &p7, &si);
if (r < 0)
return r;