]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: warning message fixlet 28430/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 17 Jul 2023 12:57:36 +0000 (14:57 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 17 Jul 2023 18:57:42 +0000 (20:57 +0200)
"Address 1.2.3.4" works as a proper noun, so the article is not
appropriate.

src/network/networkd-address.c

index 21d08c8f377d3c89584821463a5cae49b8972cce..c487d82a5c3551135bb9563bef5772eaabd3356b 100644 (file)
@@ -1741,7 +1741,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,
-                                   "An 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) {