projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a0f0d0
)
vnc: really call zlib if we want zlib
author
Corentin Chary
<corentincj@iksaif.net>
Wed, 19 May 2010 07:24:03 +0000
(09:24 +0200)
committer
Anthony Liguori
<aliguori@us.ibm.com>
Tue, 1 Jun 2010 17:53:09 +0000
(12:53 -0500)
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>
vnc.c
patch
|
blob
|
history
diff --git
a/vnc.c
b/vnc.c
index 774a0b315a5302ad635ead31466247cdcebdf22d..8db15577deb2dcd919d7f68fb9ba15d92de23c3c 100644
(file)
--- a/
vnc.c
+++ b/
vnc.c
@@
-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);