Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
2f0883d1
Commit
2f0883d1
authored
Oct 29, 2020
by
Quanah Gibson-Mount
Browse files
ITS
#9380
- Fix return type for connection_write_resume
parent
db46f888
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/connection.c
View file @
2f0883d1
...
...
@@ -2018,7 +2018,7 @@ int connection_write(ber_socket_t s)
return
0
;
}
int
connection_write_resume
(
Connection
*
c
)
void
connection_write_resume
(
Connection
*
c
)
{
Operation
*
op
;
...
...
servers/slapd/proto-slap.h
View file @
2f0883d1
...
...
@@ -809,7 +809,7 @@ LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
LDAP_SLAPD_F
(
int
)
connection_read_activate
LDAP_P
((
ber_socket_t
s
));
LDAP_SLAPD_F
(
int
)
connection_write
LDAP_P
((
ber_socket_t
s
));
LDAP_SLAPD_F
(
int
)
connection_write_resume
LDAP_P
((
Connection
*
c
));
LDAP_SLAPD_F
(
void
)
connection_write_resume
LDAP_P
((
Connection
*
c
));
LDAP_SLAPD_F
(
void
)
connection_op_finish
LDAP_P
((
Operation
*
op
));
...
...
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