~ubuntu-branches/ubuntu/raring/nss/raring-security

« back to all changes in this revision

Viewing changes to mozilla/security/nss/lib/util/nssutil.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-03-25 13:46:06 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100325134606-bl6liuok2w9l7snv
Tags: 3.12.6-0ubuntu1
* New upstream release 3.12.6 RTM (NSS_3_12_6_RTM)
  - fixes CVE-2009-3555 aka US-CERT VU#120541
* Adjust patches to changed upstream code base
  - update debian/patches/38_kbsd.patch
  - update debian/patches/38_mips64_build.patch
  - update debian/patches/85_security_load.patch
* Remove patches that are merged upstream
  - delete debian/patches/91_nonexec_stack.patch
  - update debian/patches/series
* Bump nspr dependency to 4.8
  - update debian/control
* Add new symbols for 3.12.6
  - update debian/libnss3-1d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#ifndef __nssutil_h_
41
41
#define __nssutil_h_
42
42
 
 
43
#ifndef RC_INVOKED
43
44
#include "seccomon.h"
 
45
#endif
44
46
 
45
47
/*
46
 
 * NSS utilities's major version, minor version, patch level, and whether
47
 
 * this is a beta release.
 
48
 * NSS utilities's major version, minor version, patch level, build number,
 
49
 * and whether this is a beta release.
48
50
 *
49
51
 * The format of the version string should be
50
 
 *     "<major version>.<minor version>[.<patch level>][ <Beta>]"
 
52
 *     "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>]"
51
53
 */
52
 
#define NSSUTIL_VERSION  "3.12.3.1"
 
54
#define NSSUTIL_VERSION  "3.12.6.2"
53
55
#define NSSUTIL_VMAJOR   3
54
56
#define NSSUTIL_VMINOR   12
55
 
#define NSSUTIL_VPATCH   3
 
57
#define NSSUTIL_VPATCH   6
 
58
#define NSSUTIL_VBUILD   2
56
59
#define NSSUTIL_BETA     PR_FALSE
57
60
 
58
61
#endif /* __nssutil_h_ */