summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2002-03-20 21:17:30 +0000
committerwtc%netscape.com <devnull@localhost>2002-03-20 21:17:30 +0000
commit44cc26f5fdd4180a8e86da326924148e80b2283c (patch)
treef37d6ae09238fe2d30fd9b07454d5696645574fa
parentf83bd858cc113a4d1e6c7f402d5da12d1b53bdac (diff)
downloadnss-hg-44cc26f5fdd4180a8e86da326924148e80b2283c.tar.gz
Bugzilla bug 131427: add "for Clients" to the version id strings in the
softoken shared library if MOZ_CLIENT is defined. r=relyea.
-rw-r--r--security/nss/lib/softoken/softkver.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/security/nss/lib/softoken/softkver.c b/security/nss/lib/softoken/softkver.c
index e833664a1..a518a101e 100644
--- a/security/nss/lib/softoken/softkver.c
+++ b/security/nss/lib/softoken/softkver.c
@@ -41,13 +41,19 @@
#define _DEBUG_STRING ""
#endif
+#if defined(MOZ_CLIENT)
+#define _CLIENT_STRING " for Clients"
+#else
+#define _CLIENT_STRING ""
+#endif
+
/*
* Version information for the 'ident' and 'what commands
*
* NOTE: the first component of the concatenated rcsid string
* must not end in a '$' to prevent rcs keyword substitution.
*/
-const char __nss_softokn_rcsid[] = "$Header: NSS " NSS_VERSION _DEBUG_STRING
+const char __nss_softokn_rcsid[] = "$Header: NSS " NSS_VERSION _CLIENT_STRING _DEBUG_STRING
" " __DATE__ " " __TIME__ " $";
-const char __nss_softokn_sccsid[] = "@(#)NSS " NSS_VERSION _DEBUG_STRING
+const char __nss_softokn_sccsid[] = "@(#)NSS " NSS_VERSION _CLIENT_STRING _DEBUG_STRING
" " __DATE__ " " __TIME__;