Use the same error messages for serial devices validation which are
already used in bhyve_domain.c
Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
/* bhyve supports 4 ports: com1, com2, com3, com4 */
if (chr->target.port > 3) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
- _("only two serial ports are supported"));
+ _("Only four serial ports are supported"));
return -1;
}
break;
default:
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
- _("only nmdm and tcp console types are supported"));
+ _("Only 'nmdm' and 'tcp' console types are supported"));
return -1;
}
}