Skip to content

Commit

Permalink
Bugzilla bug 131427: add "for Clients" to the version id strings in the
Browse files Browse the repository at this point in the history
softoken shared library if MOZ_CLIENT is defined.  r=relyea.
  • Loading branch information
wtc%netscape.com committed Mar 20, 2002
1 parent 9d63b7f commit dba155c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions security/nss/lib/softoken/softkver.c
Expand Up @@ -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__;

0 comments on commit dba155c

Please sign in to comment.