mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Fix 100796: calling undeclared functions breaks AIX build
Workaround 100791: misspelled function prototypes in pk11func.h
This commit is contained in:
parent
f3fac3b92e
commit
6103c2860e
@ -372,6 +372,12 @@ finish:
|
||||
return token;
|
||||
}
|
||||
|
||||
/*
|
||||
* workaround for bug 100791: misspelled function prototypes in pk11func.h
|
||||
*/
|
||||
SECItem*
|
||||
PK11_GetLowLevelKeyIDForCert(PK11SlotInfo*,CERTCertificate*,void*);
|
||||
|
||||
/**********************************************************************
|
||||
* PK11Cert.getUniqueID
|
||||
*/
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include "_jni/org_mozilla_jss_pkcs11_PK11KeyPairGenerator.h"
|
||||
|
||||
#include <pk11func.h>
|
||||
#include <pk11pqg.h>
|
||||
#include <nspr.h>
|
||||
#include <key.h>
|
||||
#include <secitem.h>
|
||||
|
@ -310,6 +310,12 @@ finish:
|
||||
return token;
|
||||
}
|
||||
|
||||
/*
|
||||
* workaround for bug 100791: misspelled function prototypes in pk11func.h
|
||||
*/
|
||||
SECItem*
|
||||
PK11_GetLowLevelKeyIDForPrivateKey(SECKEYPrivateKey*);
|
||||
|
||||
/**********************************************************************
|
||||
* PK11PrivKey.getUniqueID
|
||||
*/
|
||||
|
@ -36,6 +36,7 @@
|
||||
#include <plarena.h>
|
||||
#include <secmodt.h>
|
||||
#include <pk11func.h>
|
||||
#include <pk11pqg.h>
|
||||
#include <secerr.h>
|
||||
#include <nspr.h>
|
||||
#include <key.h>
|
||||
|
Loading…
Reference in New Issue
Block a user