diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-02-27 05:28:02 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-02-27 05:28:02 +0100 |
commit | 27060655149610c711dd1beaf894df13ae35e9b8 (patch) | |
tree | 11beb7f76ba68c59a702eaa7638b54188db05b85 /src/sysext | |
parent | Merge pull request #31000 from flatcar-hub/krnowak/mutable-overlays (diff) | |
download | systemd-27060655149610c711dd1beaf894df13ae35e9b8.tar.xz systemd-27060655149610c711dd1beaf894df13ae35e9b8.zip |
sysext: fix typo
Diffstat (limited to 'src/sysext')
-rw-r--r-- | src/sysext/sysext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysext/sysext.c b/src/sysext/sysext.c index cb55d62322..82255ebe99 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; |