diff options
author | Lennart Poettering <lennart@poettering.net> | 2020-01-29 14:13:03 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-01-29 15:32:26 +0100 |
commit | 72d43d09ccb55b70d65494ad8cfea5af6f3ef52f (patch) | |
tree | ff650b3d9405f98626f1665f3de7a07c97dbca05 /src | |
parent | NEWS: more v245 preparation (diff) | |
download | systemd-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"
Diffstat (limited to 'src')
-rw-r--r-- | src/id128/id128.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/id128/id128.c b/src/id128/id128.c index de74bac2c0..19435f80fe 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); |