1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-06 08:26:52 +03:00

network: fix typo

This commit is contained in:
Yu Watanabe 2019-11-05 10:42:19 +09:00
parent e7825b2359
commit 095b3a7d90

View File

@ -388,7 +388,8 @@ int config_parse_route_prefix_lifetime(const char *unit,
r = parse_sec(rvalue, &usec);
if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r, "Roure lifetime is invalid, ignoring assignment: %s", rvalue);
log_syntax(unit, LOG_ERR, filename, line, r,
"Route lifetime is invalid, ignoring assignment: %s", rvalue);
return 0;
}