Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: mozilla/security/nss/lib/util/nssutil.h

Issue 606034: NSS: update to 3.12.6 RC0 (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * NSS utility functions 2 * NSS utility functions
3 * 3 *
4 * ***** BEGIN LICENSE BLOCK ***** 4 * ***** BEGIN LICENSE BLOCK *****
5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * 6 *
7 * The contents of this file are subject to the Mozilla Public License Version 7 * The contents of this file are subject to the Mozilla Public License Version
8 * 1.1 (the "License"); you may not use this file except in compliance with 8 * 1.1 (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at 9 * the License. You may obtain a copy of the License at
10 * http://www.mozilla.org/MPL/ 10 * http://www.mozilla.org/MPL/
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "seccomon.h" 44 #include "seccomon.h"
45 #endif 45 #endif
46 46
47 /* 47 /*
48 * NSS utilities's major version, minor version, patch level, build number, 48 * NSS utilities's major version, minor version, patch level, build number,
49 * and whether this is a beta release. 49 * and whether this is a beta release.
50 * 50 *
51 * The format of the version string should be 51 * The format of the version string should be
52 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta> ]" 52 * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta> ]"
53 */ 53 */
54 #define NSSUTIL_VERSION "3.12.6.0 Beta" 54 #define NSSUTIL_VERSION "3.12.6.0"
55 #define NSSUTIL_VMAJOR 3 55 #define NSSUTIL_VMAJOR 3
56 #define NSSUTIL_VMINOR 12 56 #define NSSUTIL_VMINOR 12
57 #define NSSUTIL_VPATCH 6 57 #define NSSUTIL_VPATCH 6
58 #define NSSUTIL_VBUILD 0 58 #define NSSUTIL_VBUILD 0
59 #define NSSUTIL_BETA PR_TRUE 59 #define NSSUTIL_BETA PR_FALSE
60 60
61 #endif /* __nssutil_h_ */ 61 #endif /* __nssutil_h_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698