From: Lennart Poettering Date: Mon, 14 Jun 2021 15:01:48 +0000 (+0200) Subject: repart: show partitions we don't grow/create as "unchanged" X-Git-Tag: v249-rc1~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05a2166a068f54d59d68590a81369768c2eb657b;p=thirdparty%2Fsystemd.git repart: show partitions we don't grow/create as "unchanged" The previous string was "unknown", but that's wrong, because we *do* know what we are going to do with those partitions: we leave them unmodified, hence say "unchanged" in the output, to be clearer. --- diff --git a/src/partition/repart.c b/src/partition/repart.c index 2fb4e2ec46c..824cfe8cf75 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -2037,7 +2037,7 @@ static int context_dump_partitions(Context *context, const char *node) { TABLE_UINT64, p->current_padding == UINT64_MAX ? 0 : p->current_padding, TABLE_UINT64, p->new_padding, TABLE_STRING, padding_change, TABLE_SET_COLOR, !p->partitions_next && sum_padding > 0 ? ansi_underline() : NULL, - TABLE_STRING, activity ?: "unknown"); + TABLE_STRING, activity ?: "unchanged"); if (r < 0) return table_log_add_error(r); }