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

Side by Side Diff: patches/nss-sqlite-tempfilename-ifdef.patch

Issue 12207073: Update to NSS 3.14.3 Beta 1 for the TLS CBC constant-time (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Remove unrelated WIN64 changes from nss.gyp Created 7 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 | Annotate | Revision Log
« no previous file with comments | « nss.gyp ('k') | scripts/nss-checkout.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Index: mozilla/security/nss/lib/softoken/sdb.c
2 ===================================================================
3 RCS file: /cvsroot/mozilla/security/nss/lib/softoken/sdb.c,v
4 retrieving revision 1.30
5 retrieving revision 1.31
6 diff -u -r1.30 -r1.31
7 --- mozilla/security/nss/lib/softoken/sdb.c 16 Jan 2013 18:13:25 -0000 1.30
8 +++ mozilla/security/nss/lib/softoken/sdb.c 4 Feb 2013 19:58:20 -0000 1.31
9 @@ -254,6 +254,11 @@
10 #error "sdb_getFallbackTempDir not implemented"
11 #endif
12
13 +#ifndef SQLITE_FCNTL_TEMPFILENAME
14 +/* SQLITE_FCNTL_TEMPFILENAME was added in SQLite 3.7.15 */
15 +#define SQLITE_FCNTL_TEMPFILENAME 16
16 +#endif
17 +
18 static char *
19 sdb_getTempDir(sqlite3 *sqlDB)
20 {
OLDNEW
« no previous file with comments | « nss.gyp ('k') | scripts/nss-checkout.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698