From: Yu Watanabe Date: Thu, 10 Sep 2020 04:43:47 +0000 (+0900) Subject: network: slightly update log message X-Git-Tag: v247-rc1~262^2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3489e96b3f230c07369707a4bd34b07aca99713;p=thirdparty%2Fsystemd.git network: slightly update log message --- diff --git a/src/network/netdev/macsec.c b/src/network/netdev/macsec.c index 702e674ca22..9d3b8d6e4cd 100644 --- a/src/network/netdev/macsec.c +++ b/src/network/netdev/macsec.c @@ -850,12 +850,13 @@ int config_parse_macsec_key_id( if (r == -ENOMEM) return log_oom(); if (r < 0) { - log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse KeyId \"%s\": %m", rvalue); + log_syntax(unit, LOG_WARNING, filename, line, r, + "Failed to parse KeyId=%s, ignoring assignment: %m", rvalue); return 0; } if (l > MACSEC_KEYID_LEN) { log_syntax(unit, LOG_WARNING, filename, line, 0, - "Specified KeyId is larger then the allowed maximum (%zu > %u), ignoring: %s", + "Specified KeyId= is larger then the allowed maximum (%zu > %u), ignoring: %s", l, MACSEC_KEYID_LEN, rvalue); return 0; }