qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 09/19] monitor: Simplify password input mode


From: Jan Kiszka
Subject: [Qemu-devel] [PATCH v2 09/19] monitor: Simplify password input mode
Date: Sat, 21 Feb 2009 19:29:16 +0100
User-agent: StGIT/0.14.2

Drop the hack to query passwords on all monitor terminals now that they
are requested when the user initially enters 'continue'.

Signed-off-by: Jan Kiszka <address@hidden>
---

 monitor.c |   20 --------------------
 1 files changed, 0 insertions(+), 20 deletions(-)

diff --git a/monitor.c b/monitor.c
index ae3af5e..c5234ba 100644
--- a/monitor.c
+++ b/monitor.c
@@ -2881,20 +2881,6 @@ static void monitor_readline_cb(void *opaque, const char 
*input)
 static void monitor_readline(const char *prompt, int is_password,
                              char *buf, int buf_size)
 {
-    int i;
-    int old_focus[MAX_MON];
-
-    if (is_password) {
-        for (i = 0; i < MAX_MON; i++) {
-            old_focus[i] = 0;
-            if (monitor_hd[i]) {
-                old_focus[i] = monitor_hd[i]->focus;
-                monitor_hd[i]->focus = 0;
-                qemu_chr_send_event(monitor_hd[i], CHR_EVENT_FOCUS);
-            }
-        }
-    }
-
     readline_start(prompt, is_password, monitor_readline_cb, NULL);
     monitor_readline_buf = buf;
     monitor_readline_buf_size = buf_size;
@@ -2902,12 +2888,6 @@ static void monitor_readline(const char *prompt, int 
is_password,
     while (monitor_readline_started) {
         main_loop_wait(10);
     }
-    /* restore original focus */
-    if (is_password) {
-        for (i = 0; i < MAX_MON; i++)
-            if (old_focus[i])
-                monitor_hd[i]->focus = old_focus[i];
-    }
 }
 
 int monitor_read_bdrv_key(BlockDriverState *bs)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]