Signed-off-by: Milan Broz <mbroz@xxxxxxxxxx> --- disk-utils/partx.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/disk-utils/partx.c b/disk-utils/partx.c index 69c559d..8af33ab 100644 --- a/disk-utils/partx.c +++ b/disk-utils/partx.c @@ -643,6 +643,7 @@ int main(int argc, char **argv) char *type = NULL; char *device = NULL; /* pointer to argv[], ie: /dev/sda1 */ char *wholedisk = NULL; /* allocated, ie: /dev/sda */ + char *outarg = NULL; dev_t disk_devno = 0, part_devno = 0; static const struct option long_opts[] = { @@ -691,11 +692,7 @@ int main(int argc, char **argv) errx(EXIT_FAILURE, _("failed to parse --nr <M-N> range")); break; case 'o': - ncolumns = string_to_idarray(optarg, - columns, ARRAY_SIZE(columns), - column_name_to_id); - if (ncolumns < 0) - return EXIT_FAILURE; + outarg = optarg; exclusive_option(&what, ACT_SHOW, ACT_ERROR); break; case 'P': @@ -740,6 +737,11 @@ int main(int argc, char **argv) columns[ncolumns++] = COL_UUID; } + if (what == ACT_SHOW && outarg && + string_add_to_idarray(outarg, columns, ARRAY_SIZE(columns), + &ncolumns, column_name_to_id) < 0) + return EXIT_FAILURE; + /* * Note that 'partx /dev/sda1' == 'partx /dev/sda1 /dev/sda' * so assume that the device and/or disk are always the last -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html