---
src/datatypes.c | 24 ++++++++++++------------
src/domain_conf.c | 9 +++++----
src/interface_conf.c | 4 ++--
src/lxc_driver.c | 2 +-
src/qemu_driver.c | 4 ++--
src/storage_backend.c | 6 +++---
src/virsh.c | 4 ++--
7 files changed, 27 insertions(+), 26 deletions(-)
diff --git a/src/datatypes.c b/src/datatypes.c
index 1e33ccb..8b3f8c3 100644
--- a/src/datatypes.c
+++ b/src/datatypes.c
@@ -289,7 +289,7 @@ virGetDomain(virConnectPtr conn, const char *name, const unsigned char
*uuid) {
if (virHashAddEntry(conn->domains, name, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add domain to connection hash
table"));
+ "%s", _("failed to add domain to connection
hash table"));
goto error;
}
conn->refs++;
@@ -330,7 +330,7 @@ virReleaseDomain(virDomainPtr domain) {
if (virHashRemoveEntry(conn->domains, domain->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("domain missing from connection hash table"));
+ "%s", _("domain missing from connection hash
table"));
conn = NULL;
}
@@ -430,7 +430,7 @@ virGetNetwork(virConnectPtr conn, const char *name, const unsigned
char *uuid) {
if (virHashAddEntry(conn->networks, name, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add network to connection hash
table"));
+ "%s", _("failed to add network to connection
hash table"));
goto error;
}
conn->refs++;
@@ -468,7 +468,7 @@ virReleaseNetwork(virNetworkPtr network) {
if (virHashRemoveEntry(conn->networks, network->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("network missing from connection hash table"));
+ "%s", _("network missing from connection hash
table"));
conn = NULL;
}
@@ -603,7 +603,7 @@ _("Failed to change interface mac address from %s to %s due to
differing lengths
if (virHashAddEntry(conn->interfaces, name, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add interface to connection hash
table"));
+ "%s", _("failed to add interface to connection
hash table"));
goto error;
}
conn->refs++;
@@ -642,7 +642,7 @@ virReleaseInterface(virInterfacePtr iface) {
/* unlock before reporting error because error report grabs lock */
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("interface missing from connection hash table"));
+ "%s", _("interface missing from connection hash
table"));
/* don't decr the conn refct if we weren't connected to it */
conn = NULL;
}
@@ -744,7 +744,7 @@ virGetStoragePool(virConnectPtr conn, const char *name, const unsigned
char *uui
if (virHashAddEntry(conn->storagePools, name, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add storage pool to connection hash
table"));
+ "%s", _("failed to add storage pool to
connection hash table"));
goto error;
}
conn->refs++;
@@ -783,7 +783,7 @@ virReleaseStoragePool(virStoragePoolPtr pool) {
if (virHashRemoveEntry(conn->storagePools, pool->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("pool missing from connection hash table"));
+ "%s", _("pool missing from connection hash
table"));
conn = NULL;
}
@@ -887,7 +887,7 @@ virGetStorageVol(virConnectPtr conn, const char *pool, const char
*name, const c
if (virHashAddEntry(conn->storageVols, key, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add storage vol to connection hash
table"));
+ "%s", _("failed to add storage vol to
connection hash table"));
goto error;
}
conn->refs++;
@@ -927,7 +927,7 @@ virReleaseStorageVol(virStorageVolPtr vol) {
if (virHashRemoveEntry(conn->storageVols, vol->key, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("vol missing from connection hash table"));
+ "%s", _("vol missing from connection hash
table"));
conn = NULL;
}
@@ -1023,7 +1023,7 @@ virGetNodeDevice(virConnectPtr conn, const char *name)
if (virHashAddEntry(conn->nodeDevices, name, ret) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("failed to add node dev to conn hash table"));
+ "%s", _("failed to add node dev to conn hash
table"));
goto error;
}
conn->refs++;
@@ -1061,7 +1061,7 @@ virReleaseNodeDevice(virNodeDevicePtr dev) {
if (virHashRemoveEntry(conn->nodeDevices, dev->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(conn, VIR_ERR_INTERNAL_ERROR,
- _("dev missing from connection hash table"));
+ "%s", _("dev missing from connection hash
table"));
conn = NULL;
}
diff --git a/src/domain_conf.c b/src/domain_conf.c
index fbe9d78..96cadd5 100644
--- a/src/domain_conf.c
+++ b/src/domain_conf.c
@@ -2189,7 +2189,7 @@ virSecurityLabelDefParseXML(virConnectPtr conn,
VIR_FREE(p);
if (def->seclabel.type < 0) {
virDomainReportError(conn, VIR_ERR_XML_ERROR,
- _("invalid security type"));
+ "%s", _("invalid security type"));
goto error;
}
@@ -2211,7 +2211,7 @@ virSecurityLabelDefParseXML(virConnectPtr conn,
VIR_SECURITY_LABEL_BUFLEN-1, ctxt);
if (p == NULL) {
virDomainReportError(conn, VIR_ERR_XML_ERROR,
- _("security label is missing"));
+ "%s", _("security label is
missing"));
goto error;
}
@@ -2224,8 +2224,9 @@ virSecurityLabelDefParseXML(virConnectPtr conn,
p = virXPathStringLimit(conn, "string(./seclabel/imagelabel[1])",
VIR_SECURITY_LABEL_BUFLEN-1, ctxt);
if (p == NULL) {
- virDomainReportError(conn, VIR_ERR_XML_ERROR,
- _("security imagelabel is missing"));
+
+virDomainReportError(conn, VIR_ERR_XML_ERROR,
+ "%s", _("security imagelabel is
missing"));
goto error;
}
def->seclabel.imagelabel = p;
diff --git a/src/interface_conf.c b/src/interface_conf.c
index 7da1a2f..a74d17e 100644
--- a/src/interface_conf.c
+++ b/src/interface_conf.c
@@ -601,7 +601,7 @@ virInterfaceDefParseXML(virConnectPtr conn, xmlXPathContextPtr ctxt)
{
tmp = virXPathString(conn, "string(./@type)", ctxt);
if (tmp == NULL) {
virInterfaceReportError(conn, VIR_ERR_XML_ERROR,
- _("interface misses the type attribute"));
+ "%s", _("interface misses the type
attribute"));
return(NULL);
}
type = virInterfaceTypeFromString(tmp);
@@ -643,7 +643,7 @@ virInterfaceDefParseXML(virConnectPtr conn, xmlXPathContextPtr ctxt)
{
bridge = virXPathNode(conn, "./bridge[1]", ctxt);
if (bridge == NULL) {
virInterfaceReportError(conn, VIR_ERR_XML_ERROR,
- _("bridge interface misses the bridge element"));
+ "%s", _("bridge interface misses
the bridge element"));
goto error;
}
tmp = virXMLPropString(bridge, "stp");
diff --git a/src/lxc_driver.c b/src/lxc_driver.c
index 3503573..66cfa8e 100644
--- a/src/lxc_driver.c
+++ b/src/lxc_driver.c
@@ -102,7 +102,7 @@ static virDrvOpenStatus lxcOpen(virConnectPtr conn,
/* URI was good, but driver isn't active */
if (lxc_driver == NULL) {
lxcError(conn, NULL, VIR_ERR_INTERNAL_ERROR,
- _("lxc state driver is not active"));
+ "%s", _("lxc state driver is not active"));
return VIR_DRV_OPEN_ERROR;
}
}
diff --git a/src/qemu_driver.c b/src/qemu_driver.c
index c4683ae..3b56092 100644
--- a/src/qemu_driver.c
+++ b/src/qemu_driver.c
@@ -1599,7 +1599,7 @@ static int qemudSecurityHook(void *data) {
if (qemudDomainSetSecurityLabel(h->conn, h->driver, h->vm) < 0) {
qemudReportError(h->conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
- _("Failed to set security label"));
+ "%s", _("Failed to set security label"));
return -1;
}
@@ -3592,7 +3592,7 @@ static int qemudDomainGetSecurityLabel(virDomainPtr dom,
virSecurityLabelPtr sec
if (driver->securityDriver &&
driver->securityDriver->domainGetSecurityLabel) {
if (driver->securityDriver->domainGetSecurityLabel(dom->conn, vm,
seclabel) == -1) {
qemudReportError(dom->conn, dom, NULL, VIR_ERR_INTERNAL_ERROR,
- _("Failed to get security label"));
+ "%s", _("Failed to get security
label"));
goto cleanup;
}
}
diff --git a/src/storage_backend.c b/src/storage_backend.c
index 67815d7..9f2dcca 100644
--- a/src/storage_backend.c
+++ b/src/storage_backend.c
@@ -423,7 +423,7 @@ virStorageBackendCreateQemuImg(virConnectPtr conn,
use_kvmimg = 0;
else {
virStorageReportError(conn, VIR_ERR_INTERNAL_ERROR,
- _("unable to find kvm-img or qemu-img"));
+ "%s", _("unable to find kvm-img or
qemu-img"));
return -1;
}
@@ -485,9 +485,9 @@ virStorageBackendCreateQcowCreate(virConnectPtr conn,
return -1;
}
if (vol->backingStore.path != NULL) {
- virStorageReportError(conn, VIR_ERR_NO_SUPPORT,
+ virStorageReportError(conn, VIR_ERR_NO_SUPPORT, "%s",
_("copy-on-write image not supported with "
- "qcow-create"));
+ "qcow-create"));
return -1;
}
diff --git a/src/virsh.c b/src/virsh.c
index fff73a1..4499aca 100644
--- a/src/virsh.c
+++ b/src/virsh.c
@@ -4869,7 +4869,7 @@ cmdVolClone(vshControl *ctl, const vshCmd *cmd)
origpool = virStoragePoolLookupByVolume(origvol);
if (!origpool) {
- vshError(ctl, FALSE, _("failed to get parent pool"));
+ vshError(ctl, FALSE, "%s", _("failed to get parent pool"));
goto cleanup;
}
@@ -6583,7 +6583,7 @@ cmdCd(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
int found;
if (!ctl->imode) {
- vshError(ctl, FALSE, _("cd: command valid only in interactive mode"));
+ vshError(ctl, FALSE, "%s", _("cd: command valid only in interactive
mode"));
return -1;
}
--
1.6.0.6