From: Lennart Poettering Date: Tue, 9 Nov 2021 22:51:35 +0000 (+0100) Subject: bootspec: fix comment that says exactly the opposite of what is true X-Git-Tag: v250-rc1~300^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31f7765762105f82eacecfc6f510dc68b070fef7;p=thirdparty%2Fsystemd.git bootspec: fix comment that says exactly the opposite of what is true --- diff --git a/src/shared/bootspec.h b/src/shared/bootspec.h index c7b4a2ee02d..81845f47e37 100644 --- a/src/shared/bootspec.h +++ b/src/shared/bootspec.h @@ -20,7 +20,7 @@ typedef enum BootEntryType { typedef struct BootEntry { BootEntryType type; - char *id; /* This is the file basename without extension */ + char *id; /* This is the file basename (including extension!) */ char *id_old; /* Old-style ID, for deduplication purposes. */ char *path; /* This is the full path to the drop-in file */ char *root; /* The root path in which the drop-in was found, i.e. to which 'kernel', 'efi' and 'initrd' are relative */