~ubuntu-branches/ubuntu/karmic/nss/karmic-updates

« back to all changes in this revision

Viewing changes to mozilla/security/nss/lib/freebl/unix_rand.c

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-10-04 23:18:57 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20101004231857-grfx62qbg6gknih1
Tags: 3.12.8-0ubuntu0.9.10.1
* New upstream release v3.12.8 (NSS_3_12_8_RTM)
  - Fix browser wildcard certificate validation issue
  - Update root certs
  - Fix SSL deadlocks
* Refresh patches:
  - update debian/patches/38_kbsd.patch
  - update debian/patches/97_SSL_RENEGOTIATE_TRANSITIONAL.patch
* Bump minimum nspr version to 4.8.6
  - update debian/control
* Add new API to symbols file
  - update debian/libnss3-1d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
940
940
 * BSD/OS we do not call safe_popen when we succeeded in getting data
941
941
 * from /dev/urandom.
942
942
 *
943
 
 * Bug 174993: LINUX provides /dev/urandom, don't fork netstat
944
 
 * if data has been gathered successfully
 
943
 * Bug 174993: On platforms providing /dev/urandom, don't fork netstat
 
944
 * either, if data has been gathered successfully.
945
945
 */
946
946
 
947
 
#if defined(BSDI) || defined(LINUX)
 
947
#if defined(BSDI) || defined(FREEBSD) || defined(NETBSD) \
 
948
    || defined(OPENBSD) || defined(DARWIN) || defined(LINUX) \
 
949
    || defined(HPUX)
948
950
    if (bytes)
949
951
        return;
950
952
#endif