From: Zbigniew Jędrzejewski-Szmek Date: Mon, 19 Apr 2021 13:43:01 +0000 (+0200) Subject: repart: reword log message X-Git-Tag: v249-rc1~368^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F19365%2Fhead;p=thirdparty%2Fsystemd.git 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. --- 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)