Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
be864941
Commit
be864941
authored
Dec 22, 2010
by
Quanah Gibson-Mount
Browse files
ITS
#6723
parent
c6852ae7
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
be864941
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.24 Engineering
Added slapd-sql autocommit support (ITS#6612)
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed libldap dnssrv port format specifier (ITS#6644)
Fixed libldap EOF handling (ITS#6723)
Fixed libldap GnuTLS hang on socket close (ITS#6673)
Fixed libldap sasl partial write handling (ITS#6639)
Fixed libldap referral chasing (ITS#6602)
...
...
@@ -34,6 +35,9 @@ OpenLDAP 2.4.24 Engineering
Fixed contrib/autogroup LDAP URI with attribute filter (ITS#6536)
Fixed contrib/nssov to only close socket on shutdown (ITS#6676)
Fixed contrib/nssov multi platform support (ITS#6604)
Build Environment
Fixed slapd-tester EOF handling (ITS#6723)
Fixed slapd-tesster filter initialization (ITS#6735)
Documentation
admin24 guide typo fixes (ITS#6609)
ldap_open(3) document ldap_set_urllist_proc (ITS#6601)
...
...
libraries/libldap/dntest.c
View file @
be864941
...
...
@@ -81,11 +81,9 @@ main( int argc, char *argv[] )
}
if
(
strcmp
(
argv
[
1
],
"-"
)
==
0
)
{
size_t
len
;
fgets
(
buf
,
sizeof
(
buf
),
stdin
);
len
=
strlen
(
buf
);
if
(
len
>
0
&&
buf
[
--
len
]
==
'\n'
)
{
size_t
len
=
fgets
(
buf
,
sizeof
(
buf
),
stdin
)
?
strlen
(
buf
)
:
0
;
if
(
len
==
0
||
buf
[
--
len
]
==
'\n'
)
{
buf
[
len
]
=
'\0'
;
}
strin
=
buf
;
...
...
@@ -296,4 +294,3 @@ main( int argc, char *argv[] )
return
(
0
);
}
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