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
cf117372
Commit
cf117372
authored
Apr 04, 2007
by
Howard Chu
Browse files
ITS#4893 disable descriptor passing for now
parent
6bf22de0
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/os-local.c
View file @
cf117372
...
...
@@ -191,6 +191,7 @@ ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr_un *sa, int async)
*/
sendcred:
{
#if 0 /* ITS#4893 disable all of this for now */
int fds[2];
if (pipe(fds) == 0) {
/* Abandon, noop, has no reply */
...
...
@@ -234,6 +235,9 @@ sendcred:
close
(
fds
[
0
]);
close
(
fds
[
1
]);
}
# else
write
(
s
,
abandonPDU
,
sizeof
(
abandonPDU
));
#endif
/* ITS#4893 */
}
#endif
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