Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
dbad659d
Commit
dbad659d
authored
Oct 17, 2002
by
Kurt Zeilenga
Browse files
Add OPLv2.0.1 location note
parent
b7aa4d66
Changes
7
Hide whitespace changes
Inline
Side-by-side
libraries/liblber/memory.c
View file @
dbad659d
...
...
@@ -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
;
...
...
libraries/libldap/controls.c
View file @
dbad659d
...
...
@@ -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
...
...
libraries/libldap/request.c
View file @
dbad659d
...
...
@@ -26,6 +26,10 @@
* 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"
...
...
libraries/libldap/result.c
View file @
dbad659d
...
...
@@ -27,6 +27,10 @@
*
* 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)
...
...
libraries/libldap/sortctrl.c
View file @
dbad659d
...
...
@@ -16,6 +16,10 @@
* 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"
...
...
libraries/libldap/utf-8-conv.c
View file @
dbad659d
...
...
@@ -17,6 +17,10 @@
* 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
...
...
libraries/libldap/vlvctrl.c
View file @
dbad659d
...
...
@@ -15,6 +15,10 @@
* 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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment