1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-13 17:18:18 +03:00

repart: Fix parse_filter_partitions() log messages

This commit is contained in:
Daan De Meyer 2022-11-21 10:36:37 +01:00
parent 53538e33e9
commit 766f52f25c

View File

@ -5345,11 +5345,11 @@ static int parse_filter_partitions(const char *p) {
if (r == 0)
break;
if (r < 0)
return log_error_errno(r, "Failed to extract partition designator: %s", optarg);
return log_error_errno(r, "Failed to extract partition type identifier or GUID: %s", p);
r = gpt_partition_type_from_string(name, &type);
if (r < 0)
return log_error_errno(r, "'%s' is not a valid partition designator", name);
return log_error_errno(r, "'%s' is not a valid partition type identifier or GUID", name);
if (!GREEDY_REALLOC(arg_filter_partitions, arg_filter_partitions_size + 1))
return log_oom();