]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Add OPLv2.0.1 location note
authorKurt Zeilenga <kurt@openldap.org>
Thu, 17 Oct 2002 17:08:01 +0000 (17:08 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 17 Oct 2002 17:08:01 +0000 (17:08 +0000)
libraries/liblber/memory.c
libraries/libldap/controls.c
libraries/libldap/request.c
libraries/libldap/result.c
libraries/libldap/sortctrl.c
libraries/libldap/utf-8-conv.c
libraries/libldap/vlvctrl.c

index fb68dd5c14847b40475c9d2382e4fe93ee91feb7..e2381a7665186c78ed0e17105d3282a7f7197f57 100644 (file)
@@ -681,7 +681,7 @@ ber_bvarray_add( BerVarray *a, BerValue *bv )
                }
 
        } else {
-               BerVarray *atmp;
+               BerVarray atmp;
                BER_MEM_VALID( a );
 
                for ( n = 0; *a != NULL && (*a)[n].bv_val != NULL; n++ ) {
@@ -692,14 +692,14 @@ ber_bvarray_add( BerVarray *a, BerValue *bv )
                        return n;
                }
 
-               *atmp = (BerValue *) LBER_REALLOC( (char *) *a,
+               atmp = (BerValue *) LBER_REALLOC( (char *) *a,
                    (n + 2) * sizeof(BerValue) );
 
-               if( *atmp == NULL ) {
+               if( atmp == NULL ) {
                        return -1;
                }
 
-               *a = *atmp;
+               *a = atmp;
        }
 
        (*a)[n++] = *bv;
index 3d9f3a5ac5606fcad6b7419e40649eb2677d012c..6701defb9bd8a45abbe88e10a4494aa90af01e5a 100644 (file)
@@ -382,6 +382,10 @@ ldap_control_dup( const LDAPControl *c )
  * Modification to OpenLDAP source by Novell, Inc.
  * June 2000 sfs  Added control utilities
  */
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 /*---
    ldap_create_control
    
index ed80127306a5653950f99cd1420d7ca0081fa8bc..b1ed8dba4a343e9b69b14bce51e9ff83a1f0c78a 100644 (file)
  * April 2000 sfs  Added code to chase V3 referrals
  *  request.c - sending of ldap requests; handling of referrals
  */
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License 
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 
 #include "portable.h"
 
index 2f82aa94227ed6a061b3ace32330464be765d5bb..7ea3a474f4aef5a6d07d057ab171c0ba908a5721 100644 (file)
  *
  *  result.c - wait for an ldap result
  */
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License 
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 
 /*
  * LDAPv3 (RFC2251)
index f215a839d2025244bd73de4cda7a9d4f8242e945..37bf38f2e90b0250efd8463c6201ca13c62962ba 100644 (file)
  * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY.
  *
  *---*/
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License 
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 
 #include "portable.h"
 
index 9b51bcd6f6c041ac52fd0743e3178bef0a1fe534..e5aeeeca360665470f293d69b8a8ef3edd48b58e 100644 (file)
  * PUBLIC LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT
  * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY. 
  ******************************************************************************/
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License 
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 
 /*
  * UTF-8 Conversion Routines
index 0ee5ed2ab4a96b2e9fc0d6d302dac7edb31a1807..64b5cfe5abe40d1348a1c21ab45fc46365f67c85 100644 (file)
  * PUBLIC LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT
  * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY.
  *---*/
+/* Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License
+ * can be found in the file "build/LICENSE-2.0.1" in this distribution
+ * of OpenLDAP Software.
+ */
 
 #include "portable.h"