Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
49a0b0f7
Commit
49a0b0f7
authored
Jun 10, 2000
by
Kurt Zeilenga
Browse files
Fix ldapsearch fp uninitialized bug (from devel)
Ignore make clean rm error (from devel)
parent
52a9efdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
49a0b0f7
...
...
@@ -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
...
...
clients/tools/ldapsearch.c
View file @
49a0b0f7
...
...
@@ -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
;
...
...
tests/Makefile.in
View file @
49a0b0f7
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment