From: Antonio Alvarez Feijoo Date: Tue, 7 Nov 2023 08:55:56 +0000 (+0100) Subject: bootspec: fix typo X-Git-Tag: v255-rc2~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14ac242d5019a6d59cf664ef4b5ed30656bac89a;p=thirdparty%2Fsystemd.git bootspec: fix typo --- diff --git a/src/shared/bootspec.c b/src/shared/bootspec.c index 746ae743cd2..a38911603d0 100644 --- a/src/shared/bootspec.c +++ b/src/shared/bootspec.c @@ -566,7 +566,7 @@ static int config_check_inode_relevant_and_unseen(BootConfig *config, int fd, co if (fstat(fd, &st) < 0) return log_error_errno(errno, "Failed to stat('%s'): %m", fname); if (!S_ISREG(st.st_mode)) { - log_debug("File '%s' is not a reguar file, ignoring.", fname); + log_debug("File '%s' is not a regular file, ignoring.", fname); return false; }