提交 fd038a33 编写于 作者: O Osier Yang

remote: Fix incorrect error codes

Introduced by d4b53ef6. For "no internalFlags support", the
error code is changed into INTERNAL_ERROR.
上级 03388b64
......@@ -2936,7 +2936,7 @@ static int remoteDomainEventRegister(virConnectPtr conn,
remoteDriverLock(priv);
if (priv->domainEventState->timer < 0) {
remoteError(VIR_ERR_OPERATION_INVALID, "%s", _("no event support"));
remoteError(VIR_ERR_NO_SUPPORT, "%s", _("no event support"));
goto done;
}
......@@ -3285,7 +3285,7 @@ remoteSecretGetValue (virSecretPtr secret, size_t *value_size,
/* internalFlags intentionally do not go over the wire */
if (internalFlags) {
remoteError(VIR_ERR_OPERATION_INVALID, "%s", _("no internalFlags support"));
remoteError(VIR_ERR_INTERNAL_ERROR, "%s", _("no internalFlags support"));
goto done;
}
......@@ -3549,7 +3549,7 @@ static int remoteDomainEventRegisterAny(virConnectPtr conn,
remoteDriverLock(priv);
if (priv->domainEventState->timer < 0) {
remoteError(VIR_ERR_OPERATION_INVALID, "%s", _("no event support"));
remoteError(VIR_ERR_NO_SUPPORT, "%s", _("no event support"));
goto done;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册