summaryrefslogtreecommitdiffstats
path: root/src/shared/conf-parser.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-07-01 23:33:20 +0200
committerLuca Boccassi <luca.boccassi@gmail.com>2023-07-02 12:10:12 +0200
commitda890466433279d2a6714e3571fc8d7dc4369e4d (patch)
treef494ead2b43466772758711ebb9c9b9841b053e3 /src/shared/conf-parser.c
parentNEWS: reword/fix/extend the entries for v254 (diff)
downloadsystemd-da890466433279d2a6714e3571fc8d7dc4369e4d.tar.xz
systemd-da890466433279d2a6714e3571fc8d7dc4369e4d.zip
tree-wide: "<n>bit" → "<n>-bit"
In some places, "<n> bits" is used when more appropriate.
Diffstat (limited to 'src/shared/conf-parser.c')
-rw-r--r--src/shared/conf-parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/conf-parser.c b/src/shared/conf-parser.c
index 10bef002b0..ec4b53b2e8 100644
--- a/src/shared/conf-parser.c
+++ b/src/shared/conf-parser.c
@@ -953,12 +953,12 @@ int config_parse_id128(
r = sd_id128_from_string(rvalue, &t);
if (r < 0) {
- log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse 128bit ID/UUID, ignoring: %s", rvalue);
+ log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse 128-bit ID/UUID, ignoring: %s", rvalue);
return 0;
}
if (sd_id128_is_null(t)) {
- log_syntax(unit, LOG_WARNING, filename, line, 0, "128bit ID/UUID is all 0, ignoring: %s", rvalue);
+ log_syntax(unit, LOG_WARNING, filename, line, 0, "128-bit ID/UUID is all 0, ignoring: %s", rvalue);
return 0;
}