From c67cf143ce4a2aed3601a7cdaa0777b8a087ae03 Mon Sep 17 00:00:00 2001 From: leif Date: Mon, 3 Aug 1998 07:54:08 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: svn://10.0.0.236/trunk@7111 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/directory/perldap/ChangeLog | 17 +++++++++++++++++ mozilla/directory/perldap/Conn.pm | 4 ++-- mozilla/directory/perldap/examples/ChangeLog | 6 ++++++ 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/mozilla/directory/perldap/ChangeLog b/mozilla/directory/perldap/ChangeLog index 207edf8ad65..89fdf53472c 100644 --- a/mozilla/directory/perldap/ChangeLog +++ b/mozilla/directory/perldap/ChangeLog @@ -1,3 +1,20 @@ +1998-08-03 Leif Hedstrom + + * Conn.pm (modifyRDN): Fixed! It also has an option to take an + "external" DN as an argument, if supplied. + +1998-08-02 Leif Hedstrom + + * Conn.pm (getErrorCode): Now takes two optional arguments, to + return the match string, and extra error string. Note that these + two arguments are pointers to strings! + + * API.xs(ldap_get_lderrno): Fixed this function, at least it seems + to work now... + + * Conn.pm (getLD): Added this function, convenient way to get the + LD from the OO layer. + 1998-07-30 Leif Hedstrom * Conn.pm (modifyRDN): New method, to rename the RDN of the entry. diff --git a/mozilla/directory/perldap/Conn.pm b/mozilla/directory/perldap/Conn.pm index 5a66994af6c..9c0e1209e8a 100644 --- a/mozilla/directory/perldap/Conn.pm +++ b/mozilla/directory/perldap/Conn.pm @@ -1,5 +1,5 @@ ############################################################################# -# $Id: Conn.pm,v 1.12 1998-08-03 07:50:54 leif Exp $ +# $Id: Conn.pm,v 1.13 1998-08-03 07:52:13 leif Exp $ # # The contents of this file are subject to the Mozilla Public License # Version 1.0 (the "License"); you may not use this file except in @@ -390,7 +390,7 @@ sub add # sub modifyRDN { - my ($self, $rdn, $dn, $del) = ($_[$[], lc $_[$[ + 1], lc $_[$[ + 2], $_[$[ + 3]); + my ($self, $rdn, $dn, $del) = ($_[$[], lc $_[$[ + 1], $_[$[ + 2], $_[$[ + 3]); my (@vals); my $ret = 1; diff --git a/mozilla/directory/perldap/examples/ChangeLog b/mozilla/directory/perldap/examples/ChangeLog index 8149783813d..16e3f1a5312 100644 --- a/mozilla/directory/perldap/examples/ChangeLog +++ b/mozilla/directory/perldap/examples/ChangeLog @@ -1,3 +1,9 @@ +1998-08-03 Leif Hedstrom + + * psoftsync.pl: New file, also merged in some modules from + LdapUtils.pm, to make sure this works. NOTE: This script currently + doesn't work, since all "modify" operations are horked. + 1998-07-30 Leif Hedstrom * tabdump.pl: Actually works!