network/address: add missing space in log message

This commit is contained in:
Yu Watanabe
2023-07-31 18:03:40 +09:00
parent d6b64f7abb
commit c5874748a4

View File

@@ -1825,7 +1825,7 @@ int config_parse_address(
r = in_addr_prefix_from_string_auto(rvalue, &f, &buffer, &prefixlen);
if (r >= 0)
log_syntax(unit, LOG_WARNING, filename, line, r,
"Address '%s' is specified without prefix length. Assuming the prefix length is %u."
"Address '%s' is specified without prefix length. Assuming the prefix length is %u. "
"Please specify the prefix length explicitly.", rvalue, prefixlen);
}
if (r < 0) {