Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / net / third_party / nss / patches / removebuildmetadata.patch
blobcd25f09ee87e5fd683f7e0c25a19a772dda20497
1 diff --git a/ssl/sslver.c b/ssl/sslver.c
2 index 35e0317..ea60888 100644
3 --- a/ssl/sslver.c
4 +++ b/ssl/sslver.c
5 @@ -12,6 +12,13 @@
6 #define _DEBUG_STRING ""
7 #endif
9 +#if defined(DONT_EMBED_BUILD_METADATA) && !defined(OFFICIAL_BUILD)
10 +#define _DATE_AND_TIME "Sep 02 2008 08:00:00"
11 +#else
12 +#define _DATE_AND_TIME __DATE__ " " __TIME__
13 +#endif
17 * Version information for the 'ident' and 'what commands
19 @@ -19,6 +26,6 @@
20 * must not end in a '$' to prevent rcs keyword substitution.
22 const char __nss_ssl_rcsid[] = "$Header: NSS " NSS_VERSION _DEBUG_STRING
23 - " " __DATE__ " " __TIME__ " $";
24 + " " _DATE_AND_TIME " $";
25 const char __nss_ssl_sccsid[] = "@(#)NSS " NSS_VERSION _DEBUG_STRING
26 - " " __DATE__ " " __TIME__;
27 + " " _DATE_AND_TIME;