~ubuntu-branches/debian/squeeze/putty/squeeze

« back to all changes in this revision

Viewing changes to sshzlib.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-05-28 09:28:32 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080528092832-88epkb3d4s1zsw61
Tags: 0.60-3
* Move putty to Applications/Network/Communication menu sub-section.
* Use dh_desktop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
    }
225
225
    st->npending -= i;
226
226
 
227
 
    defermatch.distance = 0;
 
227
    defermatch.distance = 0; /* appease compiler */
228
228
    defermatch.len = 0;
229
229
    deferchr = '\0';
230
230
    while (len > 0) {
699
699
 
700
700
            /*
701
701
             * Start a Deflate (RFC1951) uncompressed block. We
702
 
             * transmit a zero bit (BFINAL=0), followed by a zero
703
 
             * bit and a one bit (BTYPE=00). Of course these are in
704
 
             * the wrong order (00 0).
 
702
             * transmit a zero bit (BFINAL=0), followed by two more
 
703
             * zero bits (BTYPE=00). Of course these are in the
 
704
             * wrong order (00 0), not that it matters.
705
705
             */
706
706
            outbits(out, 0, 3);
707
707