diff options
| -rw-r--r-- | cli/src/cli-xml-output.c | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/src/cli-xml-output.c b/cli/src/cli-xml-output.c index cca51a6a08f..1a418452bd6 100644 --- a/cli/src/cli-xml-output.c +++ b/cli/src/cli-xml-output.c @@ -2714,6 +2714,16 @@ cli_xml_output_vol_info (cli_local_t *local, dict_t *dict)                                  (local->writer, "%s", brick);                          XML_RET_CHECK_AND_GOTO (ret, out); +                        ret = xmlTextWriterWriteFormatElement +                                (local->writer, (xmlChar *)"name", "%s", +                                 brick); +                        XML_RET_CHECK_AND_GOTO (ret, out); + +                        ret = xmlTextWriterWriteFormatElement +                                (local->writer, (xmlChar *)"hostUuid", "%s", +                                 uuid); +                        XML_RET_CHECK_AND_GOTO (ret, out); +                          /* </brick> */                          ret = xmlTextWriterEndElement (local->writer);                          XML_RET_CHECK_AND_GOTO (ret, out);  | 
