summaryrefslogtreecommitdiff
path: root/security/nss/lib/fortcrypt
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-01-30 02:03:47 +0000
committerwtc%netscape.com <devnull@localhost>2001-01-30 02:03:47 +0000
commitd1ea97191da2137ec6eab5f58da43cb46d8b61ad (patch)
treecc3e15e0d4716618b86e7a9dc2128457569a55cb /security/nss/lib/fortcrypt
parentf33d446b13536c97f63573aec86e87dd0b537c14 (diff)
downloadnss-hg-d1ea97191da2137ec6eab5f58da43cb46d8b61ad.tar.gz
Bugzilla bug #64306: added stubs for PR_SetError and PR_SetErrorText.
Reviewed by Nelson Bolyard.
Diffstat (limited to 'security/nss/lib/fortcrypt')
-rw-r--r--security/nss/lib/fortcrypt/swfort/pkcs11/stub.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/security/nss/lib/fortcrypt/swfort/pkcs11/stub.c b/security/nss/lib/fortcrypt/swfort/pkcs11/stub.c
index 711077fb6..3767547f8 100644
--- a/security/nss/lib/fortcrypt/swfort/pkcs11/stub.c
+++ b/security/nss/lib/fortcrypt/swfort/pkcs11/stub.c
@@ -238,6 +238,12 @@ PR_Calloc(PRUint32 blocks, PRUint32 bytes) { return calloc(blocks,bytes); }
PR_IMPLEMENT(void)
PR_Free(void *ptr) { free(ptr); }
+PR_IMPLEMENT(void)
+PR_SetError(PRErrorCode errorCode, PRInt32 oserr) { return; }
+
+PR_IMPLEMENT(void)
+PR_SetErrorText(PRIntn textLength, const char *text) { return; }
+
/* Old template; want to expunge it eventually. */
#include "secasn1.h"