From: Yu Watanabe Date: Mon, 20 Jul 2026 05:56:32 +0000 (+0900) Subject: string-util: fix typo X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=3fb89fc69e2a853c0ea6da7819ad397f3f4c8742;p=thirdparty%2Fsystemd.git string-util: fix typo Follow-up for 093cac3fe8b4561b2a4662df9151156dac745457. --- diff --git a/src/basic/string-util.c b/src/basic/string-util.c index b2278c288e4..9de61aafe88 100644 --- a/src/basic/string-util.c +++ b/src/basic/string-util.c @@ -1520,7 +1520,7 @@ char* find_line_after_internal(const char *haystack, const char *needle) { bool version_is_valid(const char *s, VersionFlags flags) { - /* Validates a version string superficially. This does not proces the version string in any + /* Validates a version string superficially. This does not process the version string in any * semantical way, it mostly just validates that its charset is reasonable. */ if (FLAGS_SET(flags, VERSION_ALLOW_EMPTY) ? !s : isempty(s))