Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 /* Library identity and versioning */
6 #include "nssmkey.h"
8 #if defined(DEBUG)
9 #define _DEBUG_STRING " (debug)"
10 #else
11 #define _DEBUG_STRING ""
12 #endif
14 /*
15 * Version information for the 'ident' and 'what commands
16 *
17 * NOTE: the first component of the concatenated rcsid string
18 * must not end in a '$' to prevent rcs keyword substitution.
19 */
20 const char __nss_ckmk_rcsid[] = "$Header: NSS Access to the MAC OS X Key Ring "
21 NSS_CKMK_LIBRARY_VERSION _DEBUG_STRING
22 " " __DATE__ " " __TIME__ " $";
23 const char __nss_ckmk_sccsid[] = "@(#)NSS Access to the MAC OS X Key Ring "
24 NSS_CKMK_LIBRARY_VERSION _DEBUG_STRING
25 " " __DATE__ " " __TIME__;