From: Yu Watanabe Date: Sun, 16 Nov 2025 02:09:31 +0000 (+0900) Subject: efivars: fix typo X-Git-Tag: v259-rc1~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7254f9f4ea76320c2f2fd7484840538449eaa07;p=thirdparty%2Fsystemd.git efivars: fix typo Follow-up for ab69a04600fd34c152c44be6864eb3bc64568e17. --- diff --git a/src/basic/efivars.c b/src/basic/efivars.c index 1d874a91723..df853935ca1 100644 --- a/src/basic/efivars.c +++ b/src/basic/efivars.c @@ -73,7 +73,7 @@ int efi_get_variable( if (r < 0) return log_debug_errno(r, "EFI variable '%s' is not a regular file, refusing: %m", p); - if (st.st_size == 0) /* for uncommited variables, see below */ + if (st.st_size == 0) /* for uncommitted variables, see below */ return log_debug_errno(SYNTHETIC_ERRNO(ENOENT), "EFI variable '%s' is uncommitted", p); if ((uint64_t) st.st_size < sizeof(attr)) return log_debug_errno(SYNTHETIC_ERRNO(ENODATA), "EFI variable '%s' is shorter than %zu bytes, refusing.", p, sizeof(attr));