From: samuelvw01 <132577980+samuelvw01@users.noreply.github.com> Date: Sun, 8 Sep 2024 08:46:30 +0000 (+0200) Subject: Fix typo in escape.c X-Git-Tag: v257-rc1~517 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54ada3d13aaf4660e65ac66257cc278eabe74530;p=thirdparty%2Fsystemd.git Fix typo in escape.c --- diff --git a/src/escape/escape.c b/src/escape/escape.c index abbc08b37f7..3274b919676 100644 --- a/src/escape/escape.c +++ b/src/escape/escape.c @@ -194,7 +194,7 @@ static int run(int argc, char *argv[]) { * it. Because that means escaping is not necessarily reversible. */ if (!path_is_valid(*i)) - log_warning("Input '%s' is not a valid file system path, escaping is likely not going be reversible.", *i); + log_warning("Input '%s' is not a valid file system path, escaping is likely not going to be reversible.", *i); else if (!path_is_absolute(*i)) log_warning("Input '%s' is not an absolute file system path, escaping is likely not going to be reversible.", *i);