load-fragment: fix grammar in error messages

This commit is contained in:
Alyssa Ross 2020-08-18 20:56:59 +00:00
parent 46b875fb80
commit 556a7bbed6
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0
1 changed files with 2 additions and 2 deletions

View File

@ -4595,7 +4595,7 @@ int config_parse_bind_paths(
r = unit_full_printf(u, source, &sresolved);
if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r,
"Failed to resolved unit specifiers in \"%s\", ignoring: %m", source);
"Failed to resolve unit specifiers in \"%s\", ignoring: %m", source);
continue;
}
@ -4626,7 +4626,7 @@ int config_parse_bind_paths(
r = unit_full_printf(u, destination, &dresolved);
if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r,
"Failed to resolved specifiers in \"%s\", ignoring: %m", destination);
"Failed to resolve specifiers in \"%s\", ignoring: %m", destination);
continue;
}