~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to sm/verify.c

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-03-08 22:46:47 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090308224647-gq17gatcl71lrc2k
Tags: 2.0.11-1
* New upstream release. (Closes: #496663)
* debian/control: Make the description a little more distinctive than
  gnupg v1's. Thanks Jari Aalto. (Closes: #496323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
467
467
            {
468
468
              char *fpr;
469
469
 
470
 
              log_error ("invalid signature: message digest attribute "
471
 
                         "does not match calculated one\n");
 
470
              log_error (_("invalid signature: message digest attribute "
 
471
                           "does not match computed one\n"));
 
472
              if (DBG_X509)
 
473
                {
 
474
                  if (msgdigest)
 
475
                    log_printhex ("message:  ", msgdigest, msgdigestlen);
 
476
                  if (s)
 
477
                    log_printhex ("computed: ",
 
478
                                  s, gcry_md_get_algo_dlen (algo));
 
479
                }
472
480
              fpr = gpgsm_fpr_and_name_for_status (cert);
473
481
              gpgsm_status (ctrl, STATUS_BADSIG, fpr);
474
482
              xfree (fpr);