diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:35 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:37 -0500 |
commit | 15f31519b423747285bdc924ec4138c554076a73 (patch) | |
tree | 89da7a6ae2d7ccb9aaeb9b57926d0d4cb6aa6c02 /monitor.c | |
parent | 41084f1badadcb054823dfe57c58eafefe50d8a8 (diff) |
char: rename qemu_chr_set_echo() -> qemu_chr_fe_set_echo()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5287,7 +5287,7 @@ void monitor_init(CharDriverState *chr, int flags) /* Control mode requires special handlers */ qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read, monitor_control_event, mon); - qemu_chr_set_echo(chr, true); + qemu_chr_fe_set_echo(chr, true); } else { qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event, mon); |