Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c

Issue 16132005: Allow NSS to be built with NO_NSPR_10_SUPPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c
===================================================================
--- nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c (revision 203524)
+++ nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapdefaultclient.c (working copy)
@@ -32,7 +32,7 @@
*
* PARAMETERS:
* "arena"
- * The address of the PRArenaPool used in encoding the message. Must be
+ * The address of the PLArenaPool used in encoding the message. Must be
* non-NULL.
* "versionData"
* The Int32 containing the version number to be encoded in the Bind
@@ -57,7 +57,7 @@
*/
static PKIX_Error *
pkix_pl_LdapDefaultClient_MakeBind(
- PRArenaPool *arena,
+ PLArenaPool *arena,
PKIX_Int32 versionData,
LDAPBindAPI *bindAPI,
PKIX_UInt32 msgNum,
@@ -135,7 +135,7 @@
*
* PARAMETERS:
* "arena"
- * The address of the PRArenaPool used in encoding the message. Must be
+ * The address of the PLArenaPool used in encoding the message. Must be
* non-NULL.
* "msgNum"
* The Int32 containing the MessageID to be encoded in the Unbind message.
@@ -154,7 +154,7 @@
*/
static PKIX_Error *
pkix_pl_LdapDefaultClient_MakeUnbind(
- PRArenaPool *arena,
+ PLArenaPool *arena,
PKIX_UInt32 msgNum,
SECItem **pUnbindMsg,
void *plContext)
@@ -202,7 +202,7 @@
*
* PARAMETERS:
* "arena"
- * The address of the PRArenaPool used in encoding the message. Must be
+ * The address of the PLArenaPool used in encoding the message. Must be
* non-NULL.
* "msgNum"
* The Int32 containing the MessageID to be encoded in the Abandon message.
@@ -221,7 +221,7 @@
*/
static PKIX_Error *
pkix_pl_LdapDefaultClient_MakeAbandon(
- PRArenaPool *arena,
+ PLArenaPool *arena,
PKIX_UInt32 msgNum,
SECItem **pAbandonMsg,
void *plContext)
@@ -267,7 +267,7 @@
*
* PARAMETERS:
* "arena"
- * The address of the PRArenaPool to be used in decoding the message. Must
+ * The address of the PLArenaPool to be used in decoding the message. Must
* be non-NULL.
* "src"
* The address of the SECItem containing the DER- (or BER-)encoded string.
@@ -289,7 +289,7 @@
*/
static PKIX_Error *
pkix_pl_LdapDefaultClient_DecodeBindResponse(
- PRArenaPool *arena,
+ PLArenaPool *arena,
SECItem *src,
LDAPMessage *pBindResponse,
SECStatus *pStatus,
@@ -576,7 +576,7 @@
PKIX_PL_LdapDefaultClient *ldapDefaultClient = NULL;
PKIX_PL_Socket_Callback *callbackList;
PRFileDesc *fileDesc = NULL;
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
PKIX_ENTER(LDAPDEFAULTCLIENT, "pkix_pl_LdapDefaultClient_CreateHelper");
PKIX_NULLCHECK_TWO(socket, pClient);
@@ -2149,7 +2149,7 @@
*
* PARAMETERS:
* "arena"
- * The address of the PRArenaPool used in creating the filter. Must be
+ * The address of the PLArenaPool used in creating the filter. Must be
* non-NULL.
* "nameComponent"
* The address of a NULL-terminated list of LDAPNameComponents
@@ -2167,7 +2167,7 @@
*/
static PKIX_Error *
pkix_pl_LdapDefaultClient_MakeAndFilter(
- PRArenaPool *arena,
+ PLArenaPool *arena,
LDAPNameComponent **nameComponents,
LDAPFilter **pFilter,
void *plContext)

Powered by Google App Engine
This is Rietveld 408576698