Bug 858231: Update NSS to NSS 3.15 Beta 3, with local patches

bug-835919.patch and bug-835919.patch. r=wtc.
Bug 866525: Add AddressSanitizer annotations to port_ArenaZeroAfterMark.
r=choller.

Also include fixes for bug 866363, bug 866949, bug 835919, bug 863871.
This commit is contained in:
Wan-Teh Chang 2013-05-02 16:10:01 -07:00
parent 23a2145399
commit 4bc9fca0fb
446 changed files with 177 additions and 1003 deletions

View File

@ -1 +1 @@
NSS_3_15_BETA2 NSS_3_15_BETA3

View File

@ -14,6 +14,14 @@ ifdef BUILD_LIBPKIX_TESTS
DIRS += libpkix DIRS += libpkix
endif endif
ifeq ($(NSS_BUILD_WITHOUT_SOFTOKEN),1)
BLTEST_SRCDIR=
FIPSTEST_SRCDIR=
else
BLTEST_SRCDIR = bltest
FIPSTEST_SRCDIR = fipstest
endif
LOWHASHTEST_SRCDIR= LOWHASHTEST_SRCDIR=
ifeq ($(FREEBL_LOWHASH),1) ifeq ($(FREEBL_LOWHASH),1)
LOWHASHTEST_SRCDIR = lowhashtest # Add the lowhashtest directory to DIRS. LOWHASHTEST_SRCDIR = lowhashtest # Add the lowhashtest directory to DIRS.

View File

@ -4,8 +4,6 @@
/* /*
* Tool for converting builtin CA certs. * Tool for converting builtin CA certs.
*
* $Id$
*/ */
#include "nssrenam.h" #include "nssrenam.h"

View File

@ -4,10 +4,6 @@
/* A lexical scanner generated by flex */ /* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header$
*/
#define FLEX_SCANNER #define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_MINOR_VERSION 5

View File

@ -4,8 +4,6 @@
/* /*
* Support for various policy related extensions * Support for various policy related extensions
*
* $Id$
*/ */
#include "seccomon.h" #include "seccomon.h"

View File

@ -11,7 +11,7 @@ REQUIRES = nss nspr libdbm
DIRS = lib \ DIRS = lib \
addbuiltin \ addbuiltin \
atob \ atob \
bltest \ $(BLTEST_SRCDIR) \
btoa \ btoa \
certcgi \ certcgi \
certutil \ certutil \
@ -23,7 +23,7 @@ DIRS = lib \
derdump \ derdump \
digest \ digest \
httpserv \ httpserv \
fipstest \ $(FIPSTEST_SRCDIR) \
$(LOWHASHTEST_SRCDIR) \ $(LOWHASHTEST_SRCDIR) \
listsuites \ listsuites \
makepqg \ makepqg \

View File

@ -23,10 +23,6 @@
#line 20 "lex.Pk11Install_yy.c" #line 20 "lex.Pk11Install_yy.c"
/* A lexical scanner generated by flex */ /* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header$
*/
#define FLEX_SCANNER #define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_MINOR_VERSION 5

View File

@ -4,8 +4,6 @@
/* /*
* Test program for client-side OCSP. * Test program for client-side OCSP.
*
* $Id$
*/ */
#include "secutil.h" #include "secutil.h"

View File

@ -4,8 +4,6 @@
/* /*
* p7content -- A command to display pkcs7 content. * p7content -- A command to display pkcs7 content.
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -4,8 +4,6 @@
/* /*
* p7env -- A command to create a pkcs7 enveloped data. * p7env -- A command to create a pkcs7 enveloped data.
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -5,8 +5,6 @@
/* /*
* p7sign -- A command to create a *detached* pkcs7 signature (over a given * p7sign -- A command to create a *detached* pkcs7 signature (over a given
* input file). * input file).
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -4,8 +4,6 @@
/* /*
* p7verify -- A command to do a verification of a *detached* pkcs7 signature. * p7verify -- A command to do a verification of a *detached* pkcs7 signature.
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -36,7 +36,18 @@ ifdef USE_STATIC_LIBS
DEFINES += -DNSS_USE_STATIC_LIBS DEFINES += -DNSS_USE_STATIC_LIBS
# $(PROGRAM) has explicit dependencies on $(EXTRA_LIBS) # $(PROGRAM) has explicit dependencies on $(EXTRA_LIBS)
CRYPTOLIB=$(SOFTOKEN_LIB_DIR)/$(LIB_PREFIX)freebl.$(LIB_SUFFIX) ifndef USE_SYSTEM_FREEBL
CRYPTOLIB=$(DIST)/lib/$(LIB_PREFIX)freebl.$(LIB_SUFFIX)
SOFTOKENLIB=$(DIST)/lib/$(LIB_PREFIX)softokn.$(LIB_SUFFIX)
else
# Use the system freebl and softoken libraries
CRYPTOLIB=$(FREEBL_LIB_DIR)/$(LIB_PREFIX)freebl.$(LIB_SUFFIX)
SOFTOKENLIB=
EXTRA_SHARED_LIBS += \
-L$(SOFTOKEN_LIB_DIR) \
-lsoftokn3 \
$(NULL)
endif
PKIXLIB = \ PKIXLIB = \
$(DIST)/lib/$(LIB_PREFIX)pkixtop.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)pkixtop.$(LIB_SUFFIX) \
@ -67,7 +78,7 @@ EXTRA_LIBS += \
$(DIST)/lib/$(LIB_PREFIX)cryptohi.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)cryptohi.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)pk11wrap.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)pk11wrap.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)certdb.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)certdb.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)softokn.$(LIB_SUFFIX) \ $(SOFTOKENLIB) \
$(CRYPTOLIB) \ $(CRYPTOLIB) \
$(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)nssdev.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)nssdev.$(LIB_SUFFIX) \
@ -102,7 +113,7 @@ EXTRA_LIBS += \
$(DIST)/lib/$(LIB_PREFIX)certhi.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)certhi.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)pk11wrap.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)pk11wrap.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)softokn.$(LIB_SUFFIX) \ $(SOFTOKENLIB) \
$(DIST)/lib/$(LIB_PREFIX)certdb.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)certdb.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \
$(DIST)/lib/$(LIB_PREFIX)nssdev.$(LIB_SUFFIX) \ $(DIST)/lib/$(LIB_PREFIX)nssdev.$(LIB_SUFFIX) \
@ -185,8 +196,22 @@ EXTRA_SHARED_LIBS += \
$(NULL) $(NULL)
endif endif
ifdef SOFTOKEN_LIB_DIR
ifdef NSS_USE_SYSTEM_FREEBL
EXTRA_SHARED_LIBS += -L$(SOFTOKEN_LIB_DIR) -lsoftokn3
endif
endif
endif # USE_STATIC_LIBS endif # USE_STATIC_LIBS
# If a platform has a system freebl, set USE_SYSTEM_FREEBL to 1 and
# FREEBL_LIBS to the linker command-line arguments for the system nss-util
# (for example, -lfreebl3 on fedora) in the platform's config file in coreconf.
ifdef NSS_USE_SYSTEM_FREEBL
FREEBL_LIBS = $(FREEBL_LIB_DIR)/$(LIB_PREFIX)freebl.$(LIB_SUFFIX)
EXTRA_LIBS += $(FREEBL_LIBS)
endif
# If a platform has a system zlib, set USE_SYSTEM_ZLIB to 1 and # If a platform has a system zlib, set USE_SYSTEM_ZLIB to 1 and
# ZLIB_LIBS to the linker command-line arguments for the system zlib # ZLIB_LIBS to the linker command-line arguments for the system zlib
# (for example, -lz) in the platform's config file in coreconf. # (for example, -lz) in the platform's config file in coreconf.

View File

@ -5,8 +5,6 @@
/* /*
* Pretty-print some well-known BER or DER encoded data (e.g. certificates, * Pretty-print some well-known BER or DER encoded data (e.g. certificates,
* keys, pkcs7) * keys, pkcs7)
*
* $Id$
*/ */
#include "secutil.h" #include "secutil.h"

View File

@ -4,8 +4,6 @@
/* /*
* Test program for SDR (Secret Decoder Ring) functions. * Test program for SDR (Secret Decoder Ring) functions.
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -4,8 +4,6 @@
/* /*
* Test program for SDR (Secret Decoder Ring) functions. * Test program for SDR (Secret Decoder Ring) functions.
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -45,7 +45,10 @@ endif
# sign any and all shared libraries that contain the word freebl # sign any and all shared libraries that contain the word freebl
ifeq ($(NSS_BUILD_WITHOUT_SOFTOKEN),1)
CHECKLIBS =
CHECKLOC =
else
CHECKLIBS = $(DIST)/lib/$(DLL_PREFIX)softokn3.$(DLL_SUFFIX) CHECKLIBS = $(DIST)/lib/$(DLL_PREFIX)softokn3.$(DLL_SUFFIX)
CHECKLIBS += $(wildcard $(DIST)/lib/$(DLL_PREFIX)freebl*3.$(DLL_SUFFIX)) CHECKLIBS += $(wildcard $(DIST)/lib/$(DLL_PREFIX)freebl*3.$(DLL_SUFFIX))
ifndef NSS_DISABLE_DBM ifndef NSS_DISABLE_DBM
@ -55,7 +58,7 @@ CHECKLOC = $(CHECKLIBS:.$(DLL_SUFFIX)=.chk)
MD_LIB_RELEASE_FILES = $(CHECKLOC) MD_LIB_RELEASE_FILES = $(CHECKLOC)
ALL_TRASH += $(CHECKLOC) ALL_TRASH += $(CHECKLOC)
endif
####################################################################### #######################################################################
# (5) Execute "global" rules. (OPTIONAL) # # (5) Execute "global" rules. (OPTIONAL) #

View File

@ -4,8 +4,6 @@
/* /*
* Test program to mangle 1 bit in a binary * Test program to mangle 1 bit in a binary
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -13,8 +13,6 @@
* When in FIPS 140 mode, the NSS Internal FIPS PKCS #11 Module will * When in FIPS 140 mode, the NSS Internal FIPS PKCS #11 Module will
* compute the checksum for the NSS cryptographic boundary libraries * compute the checksum for the NSS cryptographic boundary libraries
* and compare the checksum with the value in .chk file. * and compare the checksum with the value in .chk file.
*
* $Id$
*/ */
#ifdef XP_UNIX #ifdef XP_UNIX

View File

@ -4,8 +4,6 @@
/* /*
* cmsutil -- A command to work with CMS data * cmsutil -- A command to work with CMS data
*
* $Id$
*/ */
#include "nspr.h" #include "nspr.h"

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
# $Id$
install:: install::
$(INSTALL) -m 755 $(SCRIPTS) $(SOURCE_BIN_DIR) $(INSTALL) -m 755 $(SCRIPTS) $(SOURCE_BIN_DIR)

View File

@ -7,8 +7,6 @@
# #
# smime.pl - frontend for S/MIME message generation and parsing # smime.pl - frontend for S/MIME message generation and parsing
# #
# $Id$
#
use Getopt::Std; use Getopt::Std;

View File

@ -36,9 +36,6 @@
#include "ocsp.h" #include "ocsp.h"
#include "ocspti.h" /* internals for pretty-printing routines *only* */ #include "ocspti.h" /* internals for pretty-printing routines *only* */
#define VERSIONSTRING "$Revision$ ($Date$) $Author$"
struct _DataBufferList; struct _DataBufferList;
struct _DataBuffer; struct _DataBuffer;
@ -1765,7 +1762,7 @@ int main(int argc, char *argv[])
SECStatus rv; SECStatus rv;
progName = argv[0]; progName = argv[0];
optstate = PL_CreateOptState(argc,argv,"fvxhslp:"); optstate = PL_CreateOptState(argc,argv,"fxhslp:");
while ((status = PL_GetNextOpt(optstate)) == PL_OPT_OK) { while ((status = PL_GetNextOpt(optstate)) == PL_OPT_OK) {
switch (optstate->option) { switch (optstate->option) {
case 'f': case 'f':
@ -1774,9 +1771,6 @@ int main(int argc, char *argv[])
case 'h': case 'h':
hexparse++; hexparse++;
break; break;
case 'v':
PR_fprintf(PR_STDOUT,"Version: %s\n",VERSIONSTRING);
break;
case 's': case 's':
sslparse++; sslparse++;
break; break;

View File

@ -10,4 +10,3 @@
*/ */
#error "Do not include this header file." #error "Do not include this header file."

View File

@ -62,3 +62,14 @@ include $(CORE_DEPTH)/coreconf/rules.mk
# (7) Execute "local" rules. (OPTIONAL). # # (7) Execute "local" rules. (OPTIONAL). #
####################################################################### #######################################################################
ifeq ($(NSS_BUILD_WITHOUT_SOFTOKEN),1)
# Not included when building nss without softoken
UTIL_SRCDIR=
FREEBL_SRCDIR=
SOFTOKEN_SRCDIR=
else
# default is to include all
UTIL_SRCDIR = util
FREEBL_SRCDIR = freebl
SOFTOKEN_SRCDIR = softoken
endif

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MAKEFILE_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
include manifest.mn include manifest.mn
include $(CORE_DEPTH)/coreconf/config.mk include $(CORE_DEPTH)/coreconf/config.mk

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* arena.c * arena.c
* *

View File

@ -5,10 +5,6 @@
#ifndef BASE_H #ifndef BASE_H
#define BASE_H #define BASE_H
#ifdef DEBUG
static const char BASE_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* base.h * base.h
* *

View File

@ -5,10 +5,6 @@
#ifndef BASET_H #ifndef BASET_H
#define BASET_H #define BASET_H
#ifdef DEBUG
static const char BASET_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* baset.h * baset.h
* *

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
ifdef BUILD_IDG ifdef BUILD_IDG
DEFINES += -DNSSDEBUG DEFINES += -DNSSDEBUG

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* error.c * error.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* errorval.c * errorval.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* hash.c * hash.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* hashops.c * hashops.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* item.c * item.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* libc.c * libc.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* list.c * list.c
* *

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MANIFEST_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
CORE_DEPTH = ../.. CORE_DEPTH = ../..

View File

@ -5,10 +5,6 @@
#ifndef NSSBASE_H #ifndef NSSBASE_H
#define NSSBASE_H #define NSSBASE_H
#ifdef DEBUG
static const char NSSBASE_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* nssbase.h * nssbase.h
* *

View File

@ -5,10 +5,6 @@
#ifndef NSSBASET_H #ifndef NSSBASET_H
#define NSSBASET_H #define NSSBASET_H
#ifdef DEBUG
static const char NSSBASET_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* nssbaset.h * nssbaset.h
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* tracker.c * tracker.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* utf8.c * utf8.c
* *

View File

@ -4,8 +4,6 @@
/* /*
* cert.h - public data structures and prototypes for the certificate library * cert.h - public data structures and prototypes for the certificate library
*
* $Id$
*/ */
#ifndef _CERT_H_ #ifndef _CERT_H_

View File

@ -4,8 +4,6 @@
/* /*
* Certificate handling code * Certificate handling code
*
* $Id$
*/ */
#include "nssilock.h" #include "nssilock.h"

View File

@ -3,8 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* /*
* certi.h - private data structures for the certificate library * certi.h - private data structures for the certificate library
*
* $Id$
*/ */
#ifndef _CERTI_H_ #ifndef _CERTI_H_
#define _CERTI_H_ #define _CERTI_H_

View File

@ -3,8 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* /*
* certt.h - public data structures for the certificate library * certt.h - public data structures for the certificate library
*
* $Id$
*/ */
#ifndef _CERTT_H_ #ifndef _CERTT_H_
#define _CERTT_H_ #define _CERTT_H_

View File

@ -4,8 +4,6 @@
/* /*
* Code for dealing with X509.V3 extensions. * Code for dealing with X509.V3 extensions.
*
* $Id$
*/ */
#include "cert.h" #include "cert.h"

View File

@ -4,8 +4,6 @@
/* /*
* Moved from secpkcs7.c * Moved from secpkcs7.c
*
* $Id$
*/ */
#include "cert.h" #include "cert.h"

View File

@ -4,8 +4,6 @@
/* /*
* Support for various policy related extensions * Support for various policy related extensions
*
* $Id$
*/ */
#include "seccomon.h" #include "seccomon.h"

View File

@ -4,8 +4,6 @@
/* /*
* certhtml.c --- convert a cert to html * certhtml.c --- convert a cert to html
*
* $Id$
*/ */
#include "seccomon.h" #include "seccomon.h"

View File

@ -4,8 +4,6 @@
/* /*
* Code for dealing with x.509 v3 crl and crl entries extensions. * Code for dealing with x.509 v3 crl and crl entries extensions.
*
* $Id$
*/ */
#include "cert.h" #include "cert.h"

View File

@ -5,8 +5,6 @@
/* /*
* Implementation of OCSP services, for both client and server. * Implementation of OCSP services, for both client and server.
* (XXX, really, mostly just for client right now, but intended to do both.) * (XXX, really, mostly just for client right now, but intended to do both.)
*
* $Id$
*/ */
#include "prerror.h" #include "prerror.h"

View File

@ -4,8 +4,6 @@
/* /*
* Interface to the OCSP implementation. * Interface to the OCSP implementation.
*
* $Id$
*/ */
#ifndef _OCSP_H_ #ifndef _OCSP_H_

View File

@ -3,8 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* /*
* ocspi.h - NSS internal interfaces to OCSP code * ocspi.h - NSS internal interfaces to OCSP code
*
* $Id$
*/ */
#ifndef _OCSPI_H_ #ifndef _OCSPI_H_

View File

@ -4,8 +4,6 @@
/* /*
* Public header for exported OCSP types. * Public header for exported OCSP types.
*
* $Id$
*/ */
#ifndef _OCSPT_H_ #ifndef _OCSPT_H_

View File

@ -4,8 +4,6 @@
/* /*
* Private header defining OCSP types. * Private header defining OCSP types.
*
* $Id$
*/ */
#ifndef _OCSPTI_H_ #ifndef _OCSPTI_H_

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MAKEFILE_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
include manifest.mn include manifest.mn
include $(CORE_DEPTH)/coreconf/config.mk include $(CORE_DEPTH)/coreconf/config.mk

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MAKEFILE_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
include manifest.mn include manifest.mn
include $(CORE_DEPTH)/coreconf/config.mk include $(CORE_DEPTH)/coreconf/config.mk
@ -51,4 +50,5 @@ NSS_CERTDATA_TXT = certdata.txt
endif endif
$(OBJDIR)/certdata.c: $(NSS_CERTDATA_TXT) certdata.perl $(OBJDIR)/certdata.c: $(NSS_CERTDATA_TXT) certdata.perl
@$(MAKE_OBJDIR)
$(PERL) certdata.perl < $(NSS_CERTDATA_TXT) > $@ $(PERL) certdata.perl < $(NSS_CERTDATA_TXT) > $@

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* builtins/anchor.c * builtins/anchor.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#ifndef BUILTINS_H #ifndef BUILTINS_H
#include "builtins.h" #include "builtins.h"
#endif /* BUILTINS_H */ #endif /* BUILTINS_H */

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "builtins.h" #include "builtins.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "builtins.h" #include "builtins.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "builtins.h" #include "builtins.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "builtins.h" #include "builtins.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "builtins.h" #include "builtins.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char BUILTINS_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "nssckmdt.h" #include "nssckmdt.h"
#include "nssckfw.h" #include "nssckfw.h"

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
# #
# Override TARGETS variable so that only shared libraries # Override TARGETS variable so that only shared libraries

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* builtins/constants.c * builtins/constants.c
* *

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MANIFEST_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
CORE_DEPTH = ../../.. CORE_DEPTH = ../../..

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MAKEFILE_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
include manifest.mn include manifest.mn
include $(CORE_DEPTH)/coreconf/config.mk include $(CORE_DEPTH)/coreconf/config.mk

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* capi/canchor.c * capi/canchor.c
* *

View File

@ -1,9 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public /* 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 * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#ifndef CKCAPI_H #ifndef CKCAPI_H
#include "ckcapi.h" #include "ckcapi.h"

View File

@ -1,9 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public /* 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 * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"

View File

@ -5,10 +5,6 @@
#ifndef CKCAPI_H #ifndef CKCAPI_H
#define CKCAPI_H 1 #define CKCAPI_H 1
#ifdef DEBUG
static const char CKCAPI_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "nssckmdt.h" #include "nssckmdt.h"
#include "nssckfw.h" #include "nssckfw.h"

View File

@ -1,9 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public /* 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 * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"
#include "nssbase.h" #include "nssbase.h"

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
# #
# Override TARGETS variable so that only shared libraries # Override TARGETS variable so that only shared libraries

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ckcapi/constants.c * ckcapi/constants.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"
#include "secdert.h" #include "secdert.h"

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"
/* /*

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckcapi.h" #include "ckcapi.h"
/* /*

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MANIFEST_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
CORE_DEPTH = ../../../.. CORE_DEPTH = ../../../..

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$""; @(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#ifndef CKCAPI_H #ifndef CKCAPI_H
#include "ckcapi.h" #include "ckcapi.h"
#endif /* CKCAPI_H */ #endif /* CKCAPI_H */

View File

@ -5,10 +5,6 @@
#ifndef CK_H #ifndef CK_H
#define CK_H #define CK_H
#ifdef DEBUG
static const char CK_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ck.h * ck.h
* *

View File

@ -3,7 +3,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
$cvs_id = '@(#) $RCSfile$ $Revision$ $Date$';
$copyright = '/* THIS IS A GENERATED FILE */ $copyright = '/* THIS IS A GENERATED FILE */
/* This Source Code Form is subject to the terms of the Mozilla Public /* This Source Code Form is subject to the terms of the Mozilla Public

View File

@ -5,10 +5,6 @@
#ifndef CKFW_H #ifndef CKFW_H
#define CKFW_H #define CKFW_H
#ifdef DEBUG
static const char CKFW_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ckfw.h * ckfw.h
* *

View File

@ -5,10 +5,6 @@
#ifndef CKFWM_H #ifndef CKFWM_H
#define CKFWM_H #define CKFWM_H
#ifdef DEBUG
static const char CKFWM_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ckfwm.h * ckfwm.h
* *

View File

@ -5,10 +5,6 @@
#ifndef CKFWTM_H #ifndef CKFWTM_H
#define CKFWTM_H #define CKFWTM_H
#ifdef DEBUG
static const char CKFWTM_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ckfwtm.h * ckfwtm.h
* *

View File

@ -5,10 +5,6 @@
#ifndef CKMD_H #ifndef CKMD_H
#define CKMD_H #define CKMD_H
#ifdef DEBUG
static const char CKMD_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* ckmd.h * ckmd.h
* *

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
ifdef BUILD_IDG ifdef BUILD_IDG
DEFINES += -DNSSDEBUG DEFINES += -DNSSDEBUG

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* crypto.c * crypto.c
* *

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MAKEFILE_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
include manifest.mn include manifest.mn
include config.mk include config.mk

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
/* /*
* dbm/anchor.c * dbm/anchor.c
* *

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CKDBM_CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#ifndef CKDBM_H #ifndef CKDBM_H
#define CKDBM_H #define CKDBM_H

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
CONFIG_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
ifdef BUILD_IDG ifdef BUILD_IDG
DEFINES += -DNSSDEBUG DEFINES += -DNSSDEBUG

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckdbm.h" #include "ckdbm.h"
#define PREFIX_METADATA "0000" #define PREFIX_METADATA "0000"

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckdbm.h" #include "ckdbm.h"
static void static void

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckdbm.h" #include "ckdbm.h"
static CK_RV static CK_RV

View File

@ -2,7 +2,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public # 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 # 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/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
MANIFEST_CVS_ID = "@(#) $RCSfile$ $Revision$ $Date$"
CORE_DEPTH = ../../../.. CORE_DEPTH = ../../../..

View File

@ -2,10 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifdef DEBUG
static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$";
#endif /* DEBUG */
#include "ckdbm.h" #include "ckdbm.h"
static void static void

Some files were not shown because too many files have changed in this diff Show More