diff options
author | Moonchild <moonchild@palemoon.org> | 2020-01-04 21:06:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-04 21:06:45 +0000 |
commit | e30d68b699bb3dca89534727974a08d4b43b62f8 (patch) | |
tree | 131d45d45617de18fb3d632c0b6c50b64d14dafe /nsprpub/lib/libc/src/plvrsion.c | |
parent | 26b297510a11758727438df4669357a2a2bc42ce (diff) | |
parent | b1694ef0a1d5a1ba7c8f243ac19634ee2d7b3b8f (diff) | |
download | UXP-e30d68b699bb3dca89534727974a08d4b43b62f8.tar UXP-e30d68b699bb3dca89534727974a08d4b43b62f8.tar.gz UXP-e30d68b699bb3dca89534727974a08d4b43b62f8.tar.lz UXP-e30d68b699bb3dca89534727974a08d4b43b62f8.tar.xz UXP-e30d68b699bb3dca89534727974a08d4b43b62f8.zip |
Merge pull request #1341 from MoonchildProductions/nss-work
Update NSPR and NSS
Diffstat (limited to 'nsprpub/lib/libc/src/plvrsion.c')
-rw-r--r-- | nsprpub/lib/libc/src/plvrsion.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nsprpub/lib/libc/src/plvrsion.c b/nsprpub/lib/libc/src/plvrsion.c index c4bc7a831..ffa2e95d2 100644 --- a/nsprpub/lib/libc/src/plvrsion.c +++ b/nsprpub/lib/libc/src/plvrsion.c @@ -54,7 +54,7 @@ PRVersionDescription VERSION_DESC_NAME = /* filename */ _PRODUCTION, /* the produced library name */ /* description */ "Portable runtime", /* what we are */ /* security */ "N/A", /* not applicable here */ - /* copywrite */ "Copyright (c) 1998 Netscape Communications Corporation. All Rights Reserved", + /* copywrite */ "This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.", /* comment */ "http://www.mozilla.org/MPL/", /* specialString */ "" }; @@ -68,9 +68,9 @@ PRVersionDescription VERSION_DESC_NAME = * must not end in a '$' to prevent rcs keyword substitution. */ static char rcsid[] = "$Header: NSPR " PR_VERSION _DEBUG_STRING - " " _BUILD_STRING " $"; + " " _BUILD_STRING " $"; static char sccsid[] = "@(#)NSPR " PR_VERSION _DEBUG_STRING - " " _BUILD_STRING; + " " _BUILD_STRING; #endif /* XP_UNIX */ @@ -86,7 +86,7 @@ PR_IMPLEMENT(const PRVersionDescription*) libVersionPoint() * from being optimized away as unused variables. */ const char *dummy; - + dummy = rcsid; dummy = sccsid; #endif |