| OLD | NEW |
| (Empty) |
| 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 | |
| 8 | |
| 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 | |
| 14 + | |
| 15 + | |
| 16 /* | |
| 17 * Version information for the 'ident' and 'what commands | |
| 18 * | |
| 19 @@ -19,6 +26,6 @@ | |
| 20 * must not end in a '$' to prevent rcs keyword substitution. | |
| 21 */ | |
| 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; | |
| OLD | NEW |