~ubuntu-branches/ubuntu/hardy/gnupg/hardy-updates

« back to all changes in this revision

Viewing changes to g10/parse-packet.c

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2006-12-12 15:56:56 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20061212155656-kk00wp4x0uq4tm1y
Tags: upstream-1.4.6
ImportĀ upstreamĀ versionĀ 1.4.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
721
721
            for(i=0; i < 8; i++ )
722
722
                fprintf (listfp, "%02x", k->s2k.salt[i]);
723
723
            if( s2kmode == 3 )
724
 
                fprintf (listfp, ", count %lu", (ulong)k->s2k.count );
 
724
                fprintf (listfp, ", count %lu (%lu)",
 
725
                         S2K_DECODE_COUNT((ulong)k->s2k.count),
 
726
                         (ulong)k->s2k.count );
725
727
            fprintf (listfp, "\n");
726
728
        }
727
729
    }