CVS log for include/Attic/portable.nt

[BACK] Up to [OpenLDAP] / include

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.38
Sat Sep 4 02:37:41 2004 UTC (18 years, 8 months ago) by kurt
Branches: MAIN
CVS tags: HEAD
FILE REMOVED
Changes since revision 1.37: +1 -1 lines
Move MSVC port to the Attic

Revision 1.37: download - view: text, markup - [selected for diffs]
Fri Mar 5 11:24:06 2004 UTC (19 years, 2 months ago) by hyc
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_2_MP
Diff to: previous 1.36: preferred, unified
Changes since revision 1.36: +2 -1 lines
ITS#2992 Windows fixes from Alexey Melnikov

Revision 1.36: download - view: text, markup - select for diffs
Thu Jan 1 18:15:24 2004 UTC (19 years, 5 months ago) by kurt
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_1_MP
Diff to: previous 1.35: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.35: +2 -2 lines
Happy new year

Revision 1.35: download - view: text, markup - select for diffs
Sat Jun 28 17:52:20 2003 UTC (19 years, 11 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.34: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.34: +4 -1 lines
Add HAVE_LONG_LONG

Revision 1.34: download - view: text, markup - select for diffs
Fri Jun 6 11:53:01 2003 UTC (19 years, 11 months ago) by hallvard
Branches: MAIN
Diff to: previous 1.33: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.33: +1 -4 lines
No longer make LDAP_TEST imply LDAP_DEBUG.

Revision 1.33: download - view: text, markup - select for diffs
Fri Jan 3 19:20:50 2003 UTC (20 years, 4 months ago) by kurt
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_2_BP, OPENLDAP_REL_ENG_2_2_0ALPHA
Branch point for: OPENLDAP_REL_ENG_2_2
Diff to: previous 1.32: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.32: +2 -2 lines
Happy new year

Revision 1.32: download - view: text, markup - select for diffs
Thu Oct 10 18:28:44 2002 UTC (20 years, 7 months ago) by kurt
Branches: MAIN
Diff to: previous 1.31: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.31: +1 -4 lines
Patch:  Delete the buggy surrogate parent code (ITS#1815)
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.

Revision 1.31: download - view: text, markup - select for diffs
Sat Aug 24 03:47:26 2002 UTC (20 years, 9 months ago) by kurt
Branches: MAIN
Diff to: previous 1.30: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.30: +4 -1 lines
Patch: 'ldapmodify -y file' reads password from file  (ITS#2031)

            ================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
            ================
Adapted by Kurt Zeilenga for inclusion in OpenLDAP.  My comments are
marked with enclosed with square brackets (e.g. [Kurt's comment] below.
            ================

If I run ldapmodify & co from a script, I don't want to use '-W password'
because the password shows up in the output of 'ps' for everyone,
and I can't pipe the password to 'ldapmodify -w' because -w uses
getpassphrase() which reads from the tty instead of stdin.
So I added '-y file' which reads the password from file.  The programs
exit if the file cannot be read.

[Complete contents of file is used as password.  Use:
	echo -n "secret" > password
to create a file with "secret" as the password.  The -n avoids
adding a newline (which would invalidate the password).  Note
that echo is a builtin and hence its arguments are not visible
to 'ps'.]

I changed ldapmodify, ldapmodrdn, ldapdelete, ldapsearch, ldapcompare.
I did not bother to change ldappasswd and ldapwhoami, because they
prompt for many passwords.  [I fixed up ldapwhoami.]

Rerun autoconf after applying this patch. [Done.]

Note:  I do not know if Windows NT has fstat(), so I set HAVE_FSTAT to
undef in portable.nt.  (fstat() is used to warn if the file is publicly
readable or writeable.)  [I used fstat() to set the buffer size to
read.]

[Note: using the contents of a file extends the tools to support
passwords which could not normally be provided using getpassphrase()
or via the command line.]

Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, Aug 2002.
[Kurt D. Zeilenga <kurt@openldap.org>, Aug 2002.]

Revision 1.30: download - view: text, markup - select for diffs
Wed May 15 04:18:28 2002 UTC (21 years ago) by kurt
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_MP
Diff to: previous 1.29: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.29: +4 -1 lines
Patch: Implement surrogate parent for back-shell  (ITS#1815)

			================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
			================

A surrogate parent is supposed to keep back-shell children from
deadlocking due to resources locked by a threading parent.

Implementation note: The surrogate parent closes all unused file
descriptors, so it logs errors to stderr instead of via Debug() and
uses relloc() instead of ch_realloc().

Also close a file descriptor leak if fork() fails in fork.c.

Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, May 2002.

Revision 1.29: download - view: text, markup - select for diffs
Mon Apr 8 07:43:23 2002 UTC (21 years, 1 month ago) by ando
Branches: MAIN
Diff to: previous 1.28: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.28: +7 -1 lines
Mostly based on patches provided by Hallvard B. Furuseth

ITS#1677 - cast away const warnings
ITS#1678 - unsigned char args to ctype funcs
ITS#1682 - don't redefine ldap_debug
ITS#1683 - uninitialized vars
ITS#1703 - ldo_debug initialization
ITS#1705 - unsigned testing
ITS#1706 - socklen_t args
ITS#1719 - back-tcl update (other cleanups/fixes/improvements; yet untested)
ITS#1724 - integerNormalize/integerFilter/integerIndexer bugs
ITS#1725 - libdes not required

Implement back-null (/dev/null style backend)
Cleanup some misc warnings ("%lu" format, unused/uninitialized vars,
        ambiguous operator precedence)

Kurt, please regenerate configure

Revision 1.28: download - view: text, markup - select for diffs
Wed Jan 30 03:06:31 2002 UTC (21 years, 4 months ago) by kurt
Branches: MAIN
CVS tags: OPENLDAP_REL_ENG_2_1_BP, OPENLDAP_REL_ENG_2_1_ALPHA0
Branch point for: OPENLDAP_REL_ENG_2_1
Diff to: previous 1.27: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.27: +3 -3 lines
Misc WinNT build updates

Revision 1.27: download - view: text, markup - select for diffs
Fri Jan 4 19:40:30 2002 UTC (21 years, 4 months ago) by kurt
Branches: MAIN
Diff to: previous 1.26: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.26: +2 -2 lines
Update copyright notices

Revision 1.26: download - view: text, markup - select for diffs
Wed Dec 26 22:43:28 2001 UTC (21 years, 5 months ago) by kurt
Branches: MAIN
Diff to: previous 1.25: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.25: +2 -2 lines
More struct berval DNs changes

Revision 1.25: download - view: text, markup - select for diffs
Wed Dec 19 00:55:51 2001 UTC (21 years, 5 months ago) by kurt
Branches: MAIN
Diff to: previous 1.24: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.24: +2 -4 lines
Minor adjustments...  no rlookups by default, rm maxpathlen

Revision 1.24: download - view: text, markup - select for diffs
Tue Dec 18 23:38:42 2001 UTC (21 years, 5 months ago) by hyc
Branches: MAIN
Diff to: previous 1.23: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.23: +570 -270 lines
from jon@symas.com - sync with portable.h.in 1.191

Revision 1.23: download - view: text, markup - select for diffs
Fri Jun 15 02:16:55 2001 UTC (21 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.22: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.22: +4 -2 lines
Misc updates for NT4

Revision 1.22: download - view: text, markup - select for diffs
Thu Feb 8 15:40:44 2001 UTC (22 years, 3 months ago) by gwilliams
Branches: MAIN
Diff to: previous 1.21: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.21: +5 -1 lines
turn on new logging by default

Revision 1.21: download - view: text, markup - select for diffs
Mon Jun 19 20:20:39 2000 UTC (22 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.20: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.20: +3 -3 lines
Make that LDAP_NEEDS_PROTOTYPES... might as well use proper English

Revision 1.20: download - view: text, markup - select for diffs
Mon Jun 19 20:17:47 2000 UTC (22 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.19: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.19: +3 -3 lines
NEEDS_PROTOTYPE fix

Revision 1.19: download - view: text, markup - select for diffs
Tue Jun 6 17:43:18 2000 UTC (22 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.18: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.18: +1 -6 lines
unifdef -DSLAPD_SCHEMA_NOT_COMPAT -USLAPD_SCHEMA_COMPAT

Revision 1.18: download - view: text, markup - select for diffs
Mon Jun 5 23:23:19 2000 UTC (22 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.17: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.17: +1 -4 lines
Move experimental Back-BDB2 to Attic

Revision 1.17: download - view: text, markup - select for diffs
Sun Jun 4 20:59:39 2000 UTC (22 years, 11 months ago) by kurt
Branches: MAIN
Diff to: previous 1.16: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.16: +5 -2 lines
New indexer/filter codes (test suite works) with cheats
Updated NT Project files (with Cyrus SASL library depend)

Revision 1.16: download - view: text, markup - select for diffs
Mon May 29 14:39:17 2000 UTC (23 years ago) by kurt
Branches: MAIN
Diff to: previous 1.15: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.15: +6 -1 lines
New schema code is now the default.
Use -DSLAPD_SCHEMA_COMPAT to use 1.x compatible schema (deprecated).

Revision 1.15: download - view: text, markup - select for diffs
Thu May 25 21:07:09 2000 UTC (23 years ago) by kurt
Branches: MAIN
Diff to: previous 1.14: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.14: +2 -5 lines
Define HAVE_BERKELEY_DB not HAVE_BERKELEY_DB2 per new detection.

Revision 1.14: download - view: text, markup - select for diffs
Sat May 13 00:26:27 2000 UTC (23 years ago) by kurt
Branches: MAIN
Diff to: previous 1.13: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.13: +2 -2 lines
Y2k copyright update

Revision 1.13: download - view: text, markup - select for diffs
Fri Mar 17 18:35:20 2000 UTC (23 years, 2 months ago) by kurt
Branches: MAIN
Diff to: previous 1.12: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.12: +6 -2 lines
Depend HAVE_NT_THREADS on _WINNT

Revision 1.12: download - view: text, markup - select for diffs
Fri Mar 17 00:48:44 2000 UTC (23 years, 2 months ago) by kurt
Branches: MAIN
Diff to: previous 1.11: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.11: +1 -4 lines
Remove discrete right macro (not used)

Revision 1.11: download - view: text, markup - select for diffs
Thu Mar 16 18:58:36 2000 UTC (23 years, 2 months ago) by mit
Branches: MAIN
Diff to: previous 1.10: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.10: +6 -0 lines
update Win32 build environment to support back-sql

Revision 1.10: download - view: text, markup - select for diffs
Thu Mar 16 18:15:21 2000 UTC (23 years, 2 months ago) by kurt
Branches: MAIN
Diff to: previous 1.9: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.9: +1 -4 lines
Delete SLAPD_DISCRETE_ACI

Revision 1.9: download - view: text, markup - select for diffs
Fri Feb 25 18:30:28 2000 UTC (23 years, 3 months ago) by kurt
Branches: MAIN
Diff to: previous 1.8: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.8: +2 -2 lines
tempnam() is available in MSVC5

Revision 1.8: download - view: text, markup - select for diffs
Mon Nov 1 20:25:23 1999 UTC (23 years, 7 months ago) by kdz
Branches: MAIN
Diff to: previous 1.7: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.7: +9 -13 lines
Use centralized output directories.
Update single debug/release not to use service manager nor event manager.
Likely breaks MINGW32 port.

Revision 1.7: download - view: text, markup - select for diffs
Mon Nov 1 17:17:21 1999 UTC (23 years, 7 months ago) by kdz
Branches: MAIN
Diff to: previous 1.6: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.6: +3 -2 lines
Use typedef instead of #define for ssize_t.

Revision 1.6: download - view: text, markup - select for diffs
Mon Nov 1 17:14:29 1999 UTC (23 years, 7 months ago) by kdz
Branches: MAIN
Diff to: previous 1.5: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.5: +1 -5 lines
Add configure tests for ssize_t and caddr_t and remove NT preamble
(excepting WIN32_LEAN_AND_MEAN).  Rework openlog/closelog use to
eliminate need for defines.

Revision 1.5: download - view: text, markup - select for diffs
Thu Oct 28 05:26:25 1999 UTC (23 years, 7 months ago) by hyc
Branches: MAIN
Diff to: previous 1.4: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.4: +5 -12 lines
Fixes for NT support:
  Remove macros already in Windows headers: strdup, FD_SETSIZE
  Set HAVE_SNPRINTF and HAVE_MEMORY_H to reflect NT environment
  Moved LDAP_DIRSEP macro to ldap_config.h.in
  Moved LDAP_SIGUSR macros to ac/signal.h

Revision 1.4: download - view: text, markup - select for diffs
Wed Oct 27 02:41:38 1999 UTC (23 years, 7 months ago) by kdz
Branches: MAIN
Diff to: previous 1.3: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.3: +4 -1 lines
Port to NT.

Revision 1.3: download - view: text, markup - select for diffs
Mon Aug 30 23:17:01 1999 UTC (23 years, 9 months ago) by kdz
Branches: MAIN
Branch point for: OPENLDAP_REL_ENG_2
Diff to: previous 1.2: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.2: +1 -0 lines
Add OpenLDAP RCS Id

Revision 1.2: download - view: text, markup - select for diffs
Wed Aug 25 04:31:56 1999 UTC (23 years, 9 months ago) by kdz
Branches: MAIN
Diff to: previous 1.1: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.1: +2 -2 lines
Fix NEEDS typo

Revision 1.1: download - view: text, markup - select for diffs
Tue Aug 24 21:47:11 1999 UTC (23 years, 9 months ago) by kdz
Branches: MAIN
Diff to: selected 1.37: preferred, unified
s/.h.nt/.nt/ to allow for better NMAKE processing

Revision 1.3.2.4: download - view: text, markup - select for diffs
Fri Jan 4 20:38:16 2002 UTC (21 years, 4 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2
CVS tags: OPENLDAP_REL_ENG_2_0_27, OPENLDAP_REL_ENG_2_0_26, OPENLDAP_REL_ENG_2_0_25, OPENLDAP_REL_ENG_2_0_24, OPENLDAP_REL_ENG_2_0_23, OPENLDAP_REL_ENG_2_0_22, OPENLDAP_REL_ENG_2_0_21, OPENLDAP_REL_ENG_2_0_20
Diff to: previous 1.3.2.3: preferred, unified; next MAIN 1.4: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.3.2.3: +2 -2 lines
Update copyrights for year 2002

Revision 1.3.2.3: download - view: text, markup - select for diffs
Tue Jul 4 17:58:49 2000 UTC (22 years, 10 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2
CVS tags: OPENLDAP_REL_ENG_2_0_GAMMA, OPENLDAP_REL_ENG_2_0_BETA, OPENLDAP_REL_ENG_2_0_9, OPENLDAP_REL_ENG_2_0_8, OPENLDAP_REL_ENG_2_0_7, OPENLDAP_REL_ENG_2_0_6, OPENLDAP_REL_ENG_2_0_5, OPENLDAP_REL_ENG_2_0_4, OPENLDAP_REL_ENG_2_0_3, OPENLDAP_REL_ENG_2_0_2, OPENLDAP_REL_ENG_2_0_19, OPENLDAP_REL_ENG_2_0_18, OPENLDAP_REL_ENG_2_0_17, OPENLDAP_REL_ENG_2_0_16, OPENLDAP_REL_ENG_2_0_15, OPENLDAP_REL_ENG_2_0_14, OPENLDAP_REL_ENG_2_0_13, OPENLDAP_REL_ENG_2_0_12, OPENLDAP_REL_ENG_2_0_11, OPENLDAP_REL_ENG_2_0_10, OPENLDAP_REL_ENG_2_0_1, OPENLDAP_REL_ENG_2_0_0
Diff to: previous 1.3.2.2: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.3.2.2: +3 -3 lines
Import from devel

Revision 1.3.2.2: download - view: text, markup - select for diffs
Tue Jun 13 17:57:15 2000 UTC (22 years, 11 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2
CVS tags: OPENLDAP_REL_ENG_2_0_ALPHA4
Diff to: previous 1.3.2.1: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.3.2.1: +30 -40 lines
Merge latest devel codes into releng 2 branch.
Remove back-perl, back-sql, back-tcl from branch as they have yet
to be updated.
Additional changes are needed prior to release of alpha4.

Revision 1.3.2.1: download - view: text, markup - select for diffs
Fri Sep 10 20:25:23 1999 UTC (23 years, 8 months ago) by kdz
Branches: OPENLDAP_REL_ENG_2
CVS tags: OPENLDAP_REL_ENG_2_0_ALPHA3
Diff to: previous 1.3: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.3: +1 -1 lines
Merge in all devel changes since 2.0-alpha2.
Move OPENLDAP_REL_ENG_2_MP forward.

Revision 1.28.2.4: download - view: text, markup - select for diffs
Sun Feb 9 17:02:17 2003 UTC (20 years, 3 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_1
CVS tags: OPENLDAP_REL_ENG_2_1_30, OPENLDAP_REL_ENG_2_1_29, OPENLDAP_REL_ENG_2_1_28, OPENLDAP_REL_ENG_2_1_27, OPENLDAP_REL_ENG_2_1_26, OPENLDAP_REL_ENG_2_1_25, OPENLDAP_REL_ENG_2_1_24, OPENLDAP_REL_ENG_2_1_23, OPENLDAP_REL_ENG_2_1_22, OPENLDAP_REL_ENG_2_1_21, OPENLDAP_REL_ENG_2_1_20, OPENLDAP_REL_ENG_2_1_19, OPENLDAP_REL_ENG_2_1_18, OPENLDAP_REL_ENG_2_1_17, OPENLDAP_REL_ENG_2_1_16, OPENLDAP_REL_ENG_2_1_15, OPENLDAP_REL_ENG_2_1_14, OPENLDAP_REL_ENG_2_1_13
Diff to: previous 1.28.2.3: preferred, unified; branchpoint 1.28: preferred, unified; next MAIN 1.29: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.28.2.3: +2 -5 lines
Round 2 of changes from HEAD

Revision 1.28.2.3: download - view: text, markup - select for diffs
Thu Aug 29 02:10:41 2002 UTC (20 years, 9 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_1
CVS tags: OPENLDAP_REL_ENG_2_1_9, OPENLDAP_REL_ENG_2_1_8, OPENLDAP_REL_ENG_2_1_7, OPENLDAP_REL_ENG_2_1_6, OPENLDAP_REL_ENG_2_1_5, OPENLDAP_REL_ENG_2_1_12, OPENLDAP_REL_ENG_2_1_11, OPENLDAP_REL_ENG_2_1_10
Diff to: previous 1.28.2.2: preferred, unified; branchpoint 1.28: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.28.2.2: +4 -1 lines
Sync with HEAD, including
	- subclass indexing
	- bdb locker id fixes

Revision 1.28.2.2: download - view: text, markup - select for diffs
Wed May 22 14:25:44 2002 UTC (21 years ago) by kurt
Branches: OPENLDAP_REL_ENG_2_1
CVS tags: OPENLDAP_REL_ENG_2_1_4, OPENLDAP_REL_ENG_2_1_3, OPENLDAP_REL_ENG_2_1_2
Diff to: previous 1.28.2.1: preferred, unified; branchpoint 1.28: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.28.2.1: +4 -1 lines
Suck in latest changes from HEAD

Revision 1.28.2.1: download - view: text, markup - select for diffs
Mon Apr 15 15:21:45 2002 UTC (21 years, 1 month ago) by kurt
Branches: OPENLDAP_REL_ENG_2_1
CVS tags: OPENLDAP_REL_ENG_2_1_BETA1
Diff to: previous 1.28: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.28: +7 -1 lines
Suck in HEAD changes since 2.1alpha

Revision 1.33.2.2
Wed Dec 17 20:57:14 2003 UTC (19 years, 5 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
FILE REMOVED
Changes since revision 1.33.2.1: +1 -1 lines
Remove broken MSVC build from REL_ENG branch.

Revision 1.33.2.1: download - view: text, markup - select for diffs
Thu Sep 18 15:43:31 2003 UTC (19 years, 8 months ago) by kurt
Branches: OPENLDAP_REL_ENG_2_2
CVS tags: OPENLDAP_REL_ENG_2_2_3BETA, OPENLDAP_REL_ENG_2_2_2BETA, OPENLDAP_REL_ENG_2_2_1BETA
Diff to: previous 1.33: preferred, unified; selected 1.37: preferred, unified
Changes since revision 1.33: +4 -4 lines
Changes from HEAD for beta

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

______________
© Copyright 1998-2020, OpenLDAP Foundation, info@OpenLDAP.org