]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Update TODO 36485/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 27 Feb 2025 09:38:15 +0000 (10:38 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 27 Feb 2025 13:55:00 +0000 (14:55 +0100)
TODO
src/sbsign/sbsign.c

diff --git a/TODO b/TODO
index 223a8cb3e5a0895f1f02a8ee1f17d269babb368f..c16c9dd5a5876ef455edda7ff4617c4f6539bd5d 100644 (file)
--- a/TODO
+++ b/TODO
@@ -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.
 
index 1c94db0516d004756bdfea3852122dd35e358848..86fb1a9451c98432bacb2779094aeba0b4aaaeb9 100644 (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;