From: Lennart Poettering Date: Wed, 29 Jan 2020 13:13:03 +0000 (+0100) Subject: id128: change table header from "uuid" to just "id" X-Git-Tag: v245-rc1~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72d43d09ccb55b70d65494ad8cfea5af6f3ef52f;p=thirdparty%2Fsystemd.git 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" --- 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);