Skip to content
Snippets Groups Projects
Commit 14418bdf authored by Bastiaan Bakker's avatar Bastiaan Bakker
Browse files

Avoid C++ keyword 'new' in header files.

parent 873c36f7
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,8 @@ int passwd_extop(
int slap_passwd_parse( struct berval *reqdata,
struct berval **id,
struct berval **old,
struct berval **new,
struct berval **oldpass,
struct berval **newpass,
char **text )
{
int rc = LDAP_SUCCESS;
......@@ -117,7 +117,7 @@ int slap_passwd_parse( struct berval *reqdata,
}
if( tag == LDAP_TAG_EXOP_X_MODIFY_PASSWD_OLD ) {
if( old == NULL ) {
if( oldpass == NULL ) {
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD not allowed.\n",
0, 0, 0 );
*text = "use bind to verify old password";
......@@ -125,7 +125,7 @@ int slap_passwd_parse( struct berval *reqdata,
goto done;
}
tag = ber_scanf( ber, "O", old );
tag = ber_scanf( ber, "O", oldpass );
if( tag == LBER_ERROR ) {
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID parse failed.\n",
......@@ -137,7 +137,7 @@ int slap_passwd_parse( struct berval *reqdata,
}
if( tag == LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW ) {
if( new == NULL ) {
if( newpass == NULL ) {
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: NEW not allowed.\n",
0, 0, 0 );
*text = "user specified passwords disallowed";
......@@ -145,7 +145,7 @@ int slap_passwd_parse( struct berval *reqdata,
goto done;
}
tag = ber_scanf( ber, "O", new );
tag = ber_scanf( ber, "O", newpass );
if( tag == LBER_ERROR ) {
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD parse failed.\n",
......@@ -173,14 +173,14 @@ done:
*id = NULL;
}
if( old != NULL ) {
ber_bvfree( *old );
*old = NULL;
if( oldpass != NULL ) {
ber_bvfree( *oldpass );
*oldpass = NULL;
}
if( new != NULL ) {
ber_bvfree( *new );
*new = NULL;
if( newpass != NULL ) {
ber_bvfree( *newpass );
*newpass = NULL;
}
}
......
......@@ -698,8 +698,8 @@ LIBSLAPD_F (struct berval *) slap_passwd_return(
LIBSLAPD_F (int) slap_passwd_parse(
struct berval *reqdata,
struct berval **id,
struct berval **old,
struct berval **new,
struct berval **oldpass,
struct berval **newpass,
char **text );
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment