1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-27 13:57:26 +03:00

network: slightly update log message

This commit is contained in:
Yu Watanabe 2019-07-26 10:59:36 +09:00
parent e8489008cb
commit b738530b04

View File

@ -322,13 +322,13 @@ int config_parse_bridge_igmp_version(
r = safe_atou8(rvalue, &u);
if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r,
"Failed to parse bridge IGMP version number '%s', ignoring assignment: %m",
"Failed to parse bridge's multicast IGMP version number '%s', ignoring assignment: %m",
rvalue);
return 0;
}
if (!IN_SET(u, 2, 3)) {
log_syntax(unit, LOG_ERR, filename, line, 0,
"Invalid bridge IGMP version number '%s', ignoring assignment.", rvalue);
"Invalid bridge's multicast IGMP version number '%s', ignoring assignment.", rvalue);
return 0;
}