+Thu May 29 10:55:00 EST 2008 Daniel P. Berrange <berrange@redhat.com>
+
+ * src/virsh.c: Don't add trailing blanks in dominfo output
+
Thu May 29 10:41:00 EST 2008 Daniel P. Berrange <berrange@redhat.com>
* python/libvirt-python-api.xml: Add API overrides for functions
vshPrint(ctl, "%-15s %lu kB\n", _("Max memory:"),
info.maxMem);
else
- vshPrint(ctl, "%-15s %-15s\n", _("Max memory:"),
+ vshPrint(ctl, "%-15s %s\n", _("Max memory:"),
_("no limit"));
vshPrint(ctl, "%-15s %lu kB\n", _("Used memory:"),
}
if (!virDomainGetAutostart(dom, &autostart)) {
- vshPrint(ctl, "%-15s %-15s\n", _("Autostart:"),
+ vshPrint(ctl, "%-15s %s\n", _("Autostart:"),
autostart ? _("enable") : _("disable") );
}