summaryrefslogtreecommitdiff
path: root/net/openldap
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>1999-10-27 08:27:11 +0000
committerMichael Haro <mharo@FreeBSD.org>1999-10-27 08:27:11 +0000
commit2c3170a4665cd335d4d522cd6cf6e31076d830c1 (patch)
tree82f881807da7f3a3b29b72e40bcf825673c802fb /net/openldap
parentUpdate master sites. Add `bz2cat' as an alias for `bzcat'. (diff)
mod to support Netscape's roaming profiles.
PR: 14508 Submitted by: Patrick Bihan-Faou patrick@mindstep.com
Notes
Notes: svn path=/head/; revision=22666
Diffstat (limited to 'net/openldap')
-rw-r--r--net/openldap/files/patch-aa20
1 files changed, 20 insertions, 0 deletions
diff --git a/net/openldap/files/patch-aa b/net/openldap/files/patch-aa
new file mode 100644
index 000000000000..93f071d8a12b
--- /dev/null
+++ b/net/openldap/files/patch-aa
@@ -0,0 +1,20 @@
+--- servers/slapd/add.c.orig Fri Jan 29 00:11:49 1999
++++ servers/slapd/add.c Sat Oct 23 13:31:43 1999
+@@ -180,6 +180,9 @@
+ bv.bv_len = strlen( bv.bv_val );
+ }
+ attr_merge( e, "creatorsname", bvals );
++ /* Netscape Communicator 4.5 seems to expect modification information
++ to be present within newly created items. */
++ attr_merge( e, "modifiersname", bvals );
+
+ ldap_pvt_thread_mutex_lock( &currenttime_mutex );
+ #ifndef LDAP_LOCALTIME
+@@ -194,4 +197,7 @@
+ bv.bv_val = buf;
+ bv.bv_len = strlen( bv.bv_val );
+ attr_merge( e, "createtimestamp", bvals );
++ /* Netscape Communicator 4.5 seems to expect modification information
++ to be present within newly created items. */
++ attr_merge( e, "modifytimestamp", bvals );
+ }