Merge pull request #16780 from alyssais/grammar

load-fragment: fix grammar in error messages
This commit is contained in:
Anita Zhang 2020-08-18 22:41:34 -07:00 committed by GitHub
commit 9c23ce7363
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}