diff options
author | Corentin Chary <corentincj@iksaif.net> | 2010-05-19 09:24:03 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-01 12:53:09 -0500 |
commit | 780a049e29447275bd234a3974b2574316140a5f (patch) | |
tree | 63d89085ae2a61d0d58549e41dbcff276a5a1eb8 /vnc.c | |
parent | 8a0f0d0ca343e406aab7161c883187f1d2b85d89 (diff) | |
download | qemu-780a049e29447275bd234a3974b2574316140a5f.tar.gz qemu-780a049e29447275bd234a3974b2574316140a5f.tar.bz2 qemu-780a049e29447275bd234a3974b2574316140a5f.zip |
vnc: really call zlib if we want zlib
send_framebuffer_update() was calling hextile instead of zlib
since commit 70a4568fe0c5a64adaa3da5030b7109e5199e692.
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vnc.c')
-rw-r--r-- | vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -661,7 +661,7 @@ static void send_framebuffer_update(VncState *vs, int x, int y, int w, int h) { switch(vs->vnc_encoding) { case VNC_ENCODING_ZLIB: - vnc_hextile_send_framebuffer_update(vs, x, y, w, h); + vnc_zlib_send_framebuffer_update(vs, x, y, w, h); break; case VNC_ENCODING_HEXTILE: vnc_framebuffer_update(vs, x, y, w, h, VNC_ENCODING_HEXTILE); |