~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to qemu/vnc.c

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2007-11-15 02:21:55 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20071115022155-pxoxb8kfcrkn72mi
Tags: 1:52+dfsg-0ubuntu1
* New upstream release.
* 08_default_tdf.patch
  - Make -tdf the default and add a -no-tdf option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1781
1781
       switch (vs->auth) {
1782
1782
       case VNC_AUTH_NONE:
1783
1783
           VNC_DEBUG("Accept auth none\n");
1784
 
           vnc_write_u32(vs, 0); /* Accept auth completion */
 
1784
           if (vs->minor >= 8) {
 
1785
               vnc_write_u32(vs, 0); /* Accept auth completion */
 
1786
               vnc_flush(vs);
 
1787
           }
1785
1788
           vnc_read_when(vs, protocol_client_init, 1);
1786
1789
           break;
1787
1790