diff options
author | Simo Sorce <idra@samba.org> | 2005-06-16 11:58:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:16 -0500 |
commit | f4183d9be26fdc00b1d3ba477485223486e9a5bc (patch) | |
tree | 2814515e2dc7b91fe68bed8b897641abe0700e14 /source4 | |
parent | 804b8d2792246abf24096dea99160b454353670b (diff) | |
download | samba-f4183d9be26fdc00b1d3ba477485223486e9a5bc.tar.gz samba-f4183d9be26fdc00b1d3ba477485223486e9a5bc.tar.bz2 samba-f4183d9be26fdc00b1d3ba477485223486e9a5bc.zip |
r7635: change the license of this file to lgpl like the rest of ldb
(This used to be commit 8735188b46d4bb6c3d63d22a8c6f3fad2c82df89)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/ldb/common/ldb_explode_dn.c | 44 |
1 files changed, 30 insertions, 14 deletions
diff --git a/source4/lib/ldb/common/ldb_explode_dn.c b/source4/lib/ldb/common/ldb_explode_dn.c index 79cbe12d61..30e5740652 100644 --- a/source4/lib/ldb/common/ldb_explode_dn.c +++ b/source4/lib/ldb/common/ldb_explode_dn.c @@ -1,24 +1,40 @@ /* - Unix SMB/CIFS implementation. - LDAP server + ldb database library + Copyright (C) Simo Sorce 2004 Copyright (C) Derrell Lipman 2005 + + ** NOTE! The following LGPL license applies to the ldb + ** library. This does NOT imply that all of Samba is released + ** under the LGPL - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +/* + * Name: ldb + * + * Component: ldb dn parsing + * + * Description: explode a dn into it's own basic elements + * and put them in a structure + * + * Author: Simo Sorce + * Author: Derrell Lipman + */ + #include <ctype.h> #include "includes.h" #include "ldb/include/ldb.h" |