From da1af43dc1e11c723275aaf53588ec150dfc6c26 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 19 Apr 2021 15:43:01 +0200 Subject: [PATCH] repart: reword log message The UUID does not exist, a partion with the UUID exists. So let's say that the UUID is "already used" for clarity. --- src/partition/repart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition/repart.c b/src/partition/repart.c index 38e65195ac6..3e88d382059 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -3116,7 +3116,7 @@ static int partition_acquire_uuid(Context *context, Partition *p, sd_id128_t *re continue; if (sd_id128_in_set(result.id, q->current_uuid, q->new_uuid)) { - log_warning("Partition UUID calculated from seed for partition %" PRIu64 " exists already, reverting to randomized UUID.", p->partno); + log_warning("Partition UUID calculated from seed for partition %" PRIu64 " already used, reverting to randomized UUID.", p->partno); r = sd_id128_randomize(&result.id); if (r < 0) -- 2.47.3