fix broken 64-bit platforms

git-svn-id: svn://10.0.0.236/trunk@118255 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ian.mcgreer%sun.com 2002-04-05 15:19:37 +00:00
parent bd3cbd29ee
commit 23a7527e3f

View File

@ -35,7 +35,7 @@
#define DEVT_H
#ifdef DEBUG
static const char DEVT_CVS_ID[] = "@(#) $RCSfile: devt.h,v $ $Revision: 1.14 $ $Date: 2002-04-04 20:00:22 $ $Name: not supported by cvs2svn $";
static const char DEVT_CVS_ID[] = "@(#) $RCSfile: devt.h,v $ $Revision: 1.15 $ $Date: 2002-04-05 15:19:37 $ $Name: not supported by cvs2svn $";
#endif /* DEBUG */
/*
@ -144,6 +144,10 @@ typedef enum {
NSSCertificateType_PKIX = 1
} NSSCertificateType;
#ifdef NSS_3_4_CODE
/* the current definition of NSSTrust depends on this value being CK_ULONG */
typedef CK_ULONG nssTrustLevel;
#else
typedef enum {
nssTrustLevel_Unknown = 0,
nssTrustLevel_NotTrusted = 1,
@ -152,6 +156,7 @@ typedef enum {
nssTrustLevel_Valid = 4,
nssTrustLevel_ValidDelegator = 5
} nssTrustLevel;
#endif
typedef struct nssCryptokiInstanceStr nssCryptokiInstance;