Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
219aee02
Commit
219aee02
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6673
parent
872ccaa2
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
219aee02
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed libldap dnssrv port format specifier (ITS#6644)
Fixed libldap GnuTLS hang on socket close (ITS#6673)
Fixed libldap sasl partial write handling (ITS#6639)
Fixed libldap url parsing with NULL host (ITS#6653)
Fixed ldapsearch segfault with deref (ITS#6638)
...
...
libraries/libldap/tls_g.c
View file @
219aee02
...
...
@@ -967,7 +967,7 @@ tlsg_sb_close( Sockbuf_IO_Desc *sbiod )
assert
(
sbiod
->
sbiod_pvt
!=
NULL
);
p
=
(
struct
tls_data
*
)
sbiod
->
sbiod_pvt
;
gnutls_bye
(
p
->
session
->
session
,
GNUTLS_SHUT_
RD
WR
);
gnutls_bye
(
p
->
session
->
session
,
GNUTLS_SHUT_WR
);
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