summaryrefslogtreecommitdiff
path: root/security/nss/lib/fortcrypt
diff options
context:
space:
mode:
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"