A disk using a source pool is listed as having a source '-' in domblklist
because it doesn't check the right XML syntax to find the source.
Add a check for "./source/volume" which is where the "path" (of sorts)
to the volume name is described.
source = virXPathString("string(./source/@file"
"|./source/@dev"
"|./source/@dir"
- "|./source/@name)", ctxt);
+ "|./source/@name"
+ "|./source/@volume)", ctxt);
if (details) {
vshPrint(ctl, "%-10s %-10s %-10s %s\n", type, device,
target, source ? source : "-");