~ubuntu-branches/ubuntu/gutsy/firefox/gutsy

« back to all changes in this revision

Viewing changes to security/nss/cmd/strsclnt/strsclnt.c

  • Committer: Bazaar Package Importer
  • Author(s): Ian Jackson
  • Date: 2006-10-10 18:49:32 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010184932-da75izt7y0e59afq
Tags: 1.99+2.0rc2+dfsg-0ubuntu1
* New upstream version 2.0rc2.
* Fix/workaround for epiphany GtkSocket lifetype crash:
  apply patch id=241087 from Mozilla Bugzilla #241535 to fix LP #63814.
* Change application name to `Firefox', as requested by mdz.
  Files changed:
    - browser/locales/en-US/chrome/branding/brand.dtd
    - browser/locales/en-US/chrome/branding/brand.properties;
  New values:
    - brandShortName and brandFullName: `Bon Echo' => `Firefox'
    - vendorShortName: `Mozilla' => `Ubuntu'
* Make preferences dialogue fit again (bah!).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1497
1497
    else {
1498
1498
        printf("strsclnt: NoReuse - %d server certificates tested.\n",
1499
1499
               certsTested);
1500
 
        exitVal = (ssl3stats->hsh_sid_cache_misses != connections) ||
 
1500
        if (ssl3stats->hsh_sid_cache_hits + ssl3stats->hsh_sid_cache_misses +
 
1501
            ssl3stats->hsh_sid_cache_not_ok > 0) {
 
1502
            exitVal = (ssl3stats->hsh_sid_cache_misses != connections) ||
1501
1503
                (certsTested != connections);
 
1504
        } else {                /* ssl2 connections */
 
1505
            exitVal = (certsTested != connections);
 
1506
        }
1502
1507
    }
1503
1508
 
1504
1509
    exitVal = ( exitVal || failed_already );