mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-19 02:28:47 -05:00
Updated libldap TLS certificate checking
Updated client tool argument handling
Updated test suite
Updated liblutil detach handling
Added libldap ldap_whoami routines
Added liblber ber_flatten2 routine
Added liblutil passwd sanity checks
Fixed liblber PROTOS bugs
Fixed ber_flush debug level
Fixed libldap NULL cred bug
Build Environment
Check back-bdb requirement for BDB 4.1
6 lines
255 B
Bash
Executable file
6 lines
255 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# Expunge extra stuff resulting from diff -u
|
|
# strip everything, including leading '-', except leading '+' to force errors
|
|
#
|
|
awk '/^-/ {if (substr($0,1,3) != "---") print substr($0,2,length($0))} /^+/ {if (substr($0,1,3) != "+++") print $0}'
|