int port = qemuProcessNextFreePort(driver, QEMU_REMOTE_PORT_MIN);
if (port < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("Unable to find an unused VNC port"));
+ "%s", _("Unable to find an unused port for VNC"));
goto cleanup;
}
vm->def->graphics[0]->data.vnc.port = port;
if (port < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("Unable to find an unused SPICE port"));
+ "%s", _("Unable to find an unused port for SPICE"));
goto cleanup;
}
vm->def->graphics[0]->data.spice.port + 1);
if (tlsPort < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("Unable to find an unused SPICE TLS port"));
+ "%s", _("Unable to find an unused port for SPICE TLS"));
qemuProcessReturnPort(driver, port);
goto cleanup;
}