From: Yu Watanabe Date: Tue, 27 Feb 2024 04:28:02 +0000 (+0900) Subject: sysext: fix typo X-Git-Tag: v256-rc1~730 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27060655149610c711dd1beaf894df13ae35e9b8;p=thirdparty%2Fsystemd.git sysext: fix typo --- diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c index cb55d623226..82255ebe994 100644 --- a/src/sysext/sysext.c +++ b/src/sysext/sysext.c @@ -619,7 +619,7 @@ static char *hierarchy_as_single_path_component(const char *hierarchy) { * could very well be like /foo/bar/baz/. So for a given hierarchy we generate a directory name by * stripping the leading and trailing separators and replacing the rest of separators with dots. This * makes the generated name to be the same for /foo/bar/baz and for /foo/bar.baz, but, again, - * speciyfing a different hierarchy is a debugging feature, so non-unique mapping should not be an + * specifying a different hierarchy is a debugging feature, so non-unique mapping should not be an * issue in general case. */ const char *stripped = hierarchy; _cleanup_free_ char *dir_name = NULL;