]> git.sur5r.net Git - openldap/commitdiff
Avoid C++ keyword 'new' in header files.
authorBastiaan Bakker <bastiaan@openldap.org>
Sun, 30 Apr 2000 15:26:51 +0000 (15:26 +0000)
committerBastiaan Bakker <bastiaan@openldap.org>
Sun, 30 Apr 2000 15:26:51 +0000 (15:26 +0000)
servers/slapd/passwd.c
servers/slapd/proto-slap.h

index 0f557c2f0f0ff763e315879b99ff9efca9a2f651..e2611643aef87aea96d43b754314e0ca00c1d89d 100644 (file)
@@ -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;
                }
        }
 
index 826654f53975b3f60088700280cbbb33879ad8a5..7e050a28f1c0636173cc1199767a7ab27a1362c7 100644 (file)
@@ -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 );
 
 /*