~ubuntu-branches/ubuntu/oneiric/isomd5sum/oneiric

« back to all changes in this revision

Viewing changes to libcheckisomd5.c

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Finnie
  • Date: 2007-11-28 12:26:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071128122616-91stslxrl0qs5egx
Tags: 11.4.0.1.1-1
* New upstream version.
* debian/implantisomd5.sgml: --supported now --supported-iso
* debian/rules: Errors on "make clean" no longer ignored (Lintian
  debian-rules-ignores-make-clean-error).
* debian/rules, debian/control: Added pycentral run, as it turns out even
  public-extension-only packages need it for deps.
* debian/control: Added Homepage, Vcs-Browser, and Vcs-Git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
    /*    printf("isosize = %lld\n", isosize); 
378
378
          printf("%s\n%s\n", mediasum, computedsum);*/
379
379
 
380
 
    if (!quiet)
381
 
        fprintf(stderr, "The supported flag value is %d\n", supported);
 
380
    /*    if (!quiet)
 
381
          fprintf(stderr, "The supported flag value is %d\n", supported);*/
382
382
 
383
383
    if (rc == 0)
384
384
        result = "FAIL.\n\nIt is not recommended to use this media.";
385
385
    else if (rc > 0)
386
 
        result = "PASS.\n\nIt is OK to install from this media.";
 
386
        result = "PASS.\n\nIt is OK to use this media.";
387
387
    else
388
388
        result = "NA.\n\nNo checksum information available, unable to verify media.";
389
389