summaryrefslogtreecommitdiff
path: root/src/partition
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-19 15:43:01 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-21 17:51:24 +0200
commitda1af43dc1e11c723275aaf53588ec150dfc6c26 (patch)
treedfefe1f9f06b1c80697d7c8f6b539244fb028352 /src/partition
parent580f48cc024681f8e018278d6807e5481501fac9 (diff)
downloadsystemd-da1af43dc1e11c723275aaf53588ec150dfc6c26.tar.gz
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.
Diffstat (limited to 'src/partition')
-rw-r--r--src/partition/repart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partition/repart.c b/src/partition/repart.c
index 38e65195ac..3e88d38205 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)