mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Fix ldapsearch fp uninitialized bug (from devel)
Ignore make clean rm error (from devel)
This commit is contained in:
parent
52a9efdf86
commit
49a0b0f7e8
3 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -3,6 +3,9 @@ OpenLDAP Change Log
|
|||
Changes included in OpenLDAP 1.2.12 Engineering
|
||||
CVS Tag: OPENLDAP_REL_ENG_1_2
|
||||
Fixed ldapmodify ldaphost NULL bug
|
||||
Fixed ldapsearch uninitialized fp bug
|
||||
Build Environment
|
||||
Ignore make clean rm failure
|
||||
|
||||
Changes included in OpenLDAP 1.2.11
|
||||
CVS Tag: OPENLDAP_REL_ENG_1_2_11
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ int argc;
|
|||
char **argv;
|
||||
{
|
||||
char *infile, *filtpattern, **attrs, line[ BUFSIZ ];
|
||||
FILE *fp;
|
||||
FILE *fp = NULL;
|
||||
int rc, i, first, scope, kerberos, deref, attrsonly, debug;
|
||||
int ldap_options, timelimit, sizelimit, authmethod, want_bindpw;
|
||||
LDAP *ld;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ all-local: FORCE
|
|||
$(srcdir)/scripts/all $(srcdir)
|
||||
|
||||
clean-local: FORCE
|
||||
$(RM) test-db/[!C]* test-repl/[!C]* *core
|
||||
-$(RM) test-db/[!C]* test-repl/[!C]* *core
|
||||
|
||||
veryclean-local: FORCE
|
||||
@-$(RM) data
|
||||
|
|
|
|||
Loading…
Reference in a new issue