|
@@ -44,7 +44,8 @@ void qmp_set_password(SetPasswordOptions *opts, Error **errp)
|
|
assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
|
|
assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
|
|
if (opts->connected != SET_PASSWORD_ACTION_KEEP) {
|
|
if (opts->connected != SET_PASSWORD_ACTION_KEEP) {
|
|
/* vnc supports "connected=keep" only */
|
|
/* vnc supports "connected=keep" only */
|
|
- error_setg(errp, QERR_INVALID_PARAMETER, "connected");
|
|
|
|
|
|
+ error_setg(errp, "parameter 'connected' must be 'keep'"
|
|
|
|
+ " when 'protocol' is 'vnc'");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
/*
|
|
/*
|
|
@@ -195,7 +196,7 @@ void qmp_client_migrate_info(const char *protocol, const char *hostname,
|
|
}
|
|
}
|
|
|
|
|
|
if (!has_port && !has_tls_port) {
|
|
if (!has_port && !has_tls_port) {
|
|
- error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
|
|
|
|
|
|
+ error_setg(errp, "parameter 'port' or 'tls-port' is required");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|