diff mbox

[v2,02/10] vnc: really call zlib if we want zlib

Message ID 1274186986-26878-3-git-send-email-corentincj@iksaif.net
State New
Headers show

Commit Message

Corentin Chary May 18, 2010, 12:49 p.m. UTC
send_framebuffer_update() was calling hextile instead of zlib
since commit 70a4568fe0c5a64adaa3da5030b7109e5199e692.

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
---
 vnc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Alexander Graf May 18, 2010, 12:54 p.m. UTC | #1
Corentin Chary wrote:
> send_framebuffer_update() was calling hextile instead of zlib
> since commit 70a4568fe0c5a64adaa3da5030b7109e5199e692.
>
> Signed-off-by: Corentin Chary <corentincj@iksaif.net>
>   

Acked-by: Alexander Graf <agraf@suse.de>
diff mbox

Patch

diff --git a/vnc.c b/vnc.c
index a91c3a3..d0c0d00 100644
--- a/vnc.c
+++ b/vnc.c
@@ -655,7 +655,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);