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

Side by Side Diff: net/third_party/nss/patches/removebuildmetadata.patch

Issue 1053903002: Update libssl to NSS 3.18 RTM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 8 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 diff --git a/net/third_party/nss/ssl/sslver.c b/net/third_party/nss/ssl/sslver.c 1 diff --git a/ssl/sslver.c b/ssl/sslver.c
2 index 35e0317..ea60888 100644 2 index 35e0317..ea60888 100644
3 --- a/net/third_party/nss/ssl/sslver.c 3 --- a/ssl/sslver.c
4 +++ b/net/third_party/nss/ssl/sslver.c 4 +++ b/ssl/sslver.c
5 @@ -12,6 +12,13 @@ 5 @@ -12,6 +12,13 @@
6 #define _DEBUG_STRING "" 6 #define _DEBUG_STRING ""
7 #endif 7 #endif
8 8
9 +#if defined(DONT_EMBED_BUILD_METADATA) && !defined(OFFICIAL_BUILD) 9 +#if defined(DONT_EMBED_BUILD_METADATA) && !defined(OFFICIAL_BUILD)
10 +#define _DATE_AND_TIME "Sep 02 2008 08:00:00" 10 +#define _DATE_AND_TIME "Sep 02 2008 08:00:00"
11 +#else 11 +#else
12 +#define _DATE_AND_TIME __DATE__ " " __TIME__ 12 +#define _DATE_AND_TIME __DATE__ " " __TIME__
13 +#endif 13 +#endif
14 + 14 +
15 + 15 +
16 /* 16 /*
17 * Version information for the 'ident' and 'what commands 17 * Version information for the 'ident' and 'what commands
18 * 18 *
19 @@ -19,6 +26,6 @@ 19 @@ -19,6 +26,6 @@
20 * must not end in a '$' to prevent rcs keyword substitution. 20 * must not end in a '$' to prevent rcs keyword substitution.
21 */ 21 */
22 const char __nss_ssl_rcsid[] = "$Header: NSS " NSS_VERSION _DEBUG_STRING 22 const char __nss_ssl_rcsid[] = "$Header: NSS " NSS_VERSION _DEBUG_STRING
23 - " " __DATE__ " " __TIME__ " $"; 23 - " " __DATE__ " " __TIME__ " $";
24 + " " _DATE_AND_TIME " $"; 24 + " " _DATE_AND_TIME " $";
25 const char __nss_ssl_sccsid[] = "@(#)NSS " NSS_VERSION _DEBUG_STRING 25 const char __nss_ssl_sccsid[] = "@(#)NSS " NSS_VERSION _DEBUG_STRING
26 - " " __DATE__ " " __TIME__; 26 - " " __DATE__ " " __TIME__;
27 + " " _DATE_AND_TIME; 27 + " " _DATE_AND_TIME;
OLDNEW
« no previous file with comments | « net/third_party/nss/patches/paddingextvalue.patch ('k') | net/third_party/nss/patches/reorderextensions.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698