aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-01-29 14:13:03 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-01-29 15:32:26 +0100
commit72d43d09ccb55b70d65494ad8cfea5af6f3ef52f (patch)
treeff650b3d9405f98626f1665f3de7a07c97dbca05
parentNEWS: more v245 preparation (diff)
downloadsystemd-72d43d09ccb55b70d65494ad8cfea5af6f3ef52f.tar.xz
systemd-72d43d09ccb55b70d65494ad8cfea5af6f3ef52f.zip
id128: change table header from "uuid" to just "id"
The tool deals with any kind of 128bit id, not just uuid, and by default we display just a series of hex chars, hence let's not claim everything was a "uuid", but just generically say "id"
-rw-r--r--src/id128/id128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/id128/id128.c b/src/id128/id128.c
index de74bac2c07..19435f80fea 100644
--- a/src/id128/id128.c
+++ b/src/id128/id128.c
@@ -87,7 +87,7 @@ static int show_one(Table **table, const char *name, sd_id128_t uuid, bool first
} else {
if (!*table) {
- *table = table_new("name", "uuid");
+ *table = table_new("name", "id");
if (!*table)
return log_oom();
table_set_width(*table, 0);