They only popped up during --disable-nls build. Without this configure
option, gcc wasn't able to detect them.
/* def:maxvcpus -> vmx:numvcpus */
if (def->vcpus != def->maxvcpus) {
- ESX_ERROR(VIR_ERR_CONFIG_UNSUPPORTED,
+ ESX_ERROR(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
_("No support for domain XML entry 'vcpu' attribute "
"'current'"));
goto cleanup;
if (!VIR_SOCKET_IS_FAMILY(netaddr, AF_INET) ||
!VIR_SOCKET_IS_FAMILY(netmask, AF_INET)) {
- iptablesError(VIR_ERR_CONFIG_UNSUPPORTED,
+ iptablesError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
_("Only IPv4 addresses can be used with iptables"));
return NULL;
}
int err;
if (val == NULL) {
- virSocketError(VIR_ERR_INVALID_ARG, _("Missing address"));
+ virSocketError(VIR_ERR_INVALID_ARG, "%s", _("Missing address"));
return -1;
}
int err;
if (addr == NULL) {
- virSocketError(VIR_ERR_INVALID_ARG, _("Missing address"));
+ virSocketError(VIR_ERR_INVALID_ARG, "%s", _("Missing address"));
return NULL;
}