| OLD | NEW |
| 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; |
| OLD | NEW |