Skip to content

Commit

Permalink
Correctly add qualifiers to options
Browse files Browse the repository at this point in the history
Delimiter must be a colon, not a comma

Signed-off-by: Ralph Castain <rhc@pmix.org>
  • Loading branch information
rhc54 committed Apr 7, 2022
1 parent 317d42e commit 6284d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mca/schizo/base/schizo_base_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ int prte_schizo_base_add_qualifier(pmix_cli_result_t *results,
// does it already contain a qualifier?
if (NULL != strchr(opt->values[0], ':')) {
// can just add this one to the end
pmix_asprintf(&tmp, "%s,%s", opt->values[0], qualifier);
pmix_asprintf(&tmp, "%s:%s", opt->values[0], qualifier);
free(opt->values[0]);
opt->values[0] = tmp;
} else {
Expand Down

0 comments on commit 6284d34

Please sign in to comment.