mirror of https://github.com/xqemu/xqemu.git
monitor: Drop dead QMP check from monitor_read_password()
Function is only called in HMP context since commit 333a96e
"qapi:
Convert change".
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
63216dc78d
commit
bcf5d19c59
|
@ -266,10 +266,7 @@ void monitor_read_command(Monitor *mon, int show_prompt)
|
||||||
int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
|
int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func,
|
||||||
void *opaque)
|
void *opaque)
|
||||||
{
|
{
|
||||||
if (monitor_ctrl_mode(mon)) {
|
if (mon->rs) {
|
||||||
qerror_report(QERR_MISSING_PARAMETER, "password");
|
|
||||||
return -EINVAL;
|
|
||||||
} else if (mon->rs) {
|
|
||||||
readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
|
readline_start(mon->rs, "Password: ", 1, readline_func, opaque);
|
||||||
/* prompt is printed on return from the command handler */
|
/* prompt is printed on return from the command handler */
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue