From: Mike Yuan Date: Mon, 12 Feb 2024 13:44:23 +0000 (+0800) Subject: core/load-fragment: fix typo (sanety -> sanity) X-Git-Tag: v256-rc1~895 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eef2b1a7b1a2de66d6d1ca6bb26dd8c0151994ea;p=thirdparty%2Fsystemd.git core/load-fragment: fix typo (sanety -> sanity) Follow-up for 435e1098ee9f1175bf60a181771a6e5983bef923 --- diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 8f1e5e15436..f3e0667df1d 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -6145,7 +6145,7 @@ int config_parse_mount_node( return log_oom(); /* The source passed is not necessarily something we understand, and we pass it as-is to mount/swapon, - * so path_is_valid is not used. But let's check for basic sanety, i.e. if the source is longer than + * so path_is_valid is not used. But let's check for basic sanity, i.e. if the source is longer than * PATH_MAX, you're likely doing something wrong. */ if (strlen(path) >= PATH_MAX) { log_syntax(unit, LOG_WARNING, filename, line, 0, "Resolved mount path '%s' too long, ignoring.", path);