Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
c8a1de74
Commit
c8a1de74
authored
Dec 12, 2002
by
Kurt Zeilenga
Browse files
Remove lint
parent
a67bb234
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/tls.c
View file @
c8a1de74
...
...
@@ -52,7 +52,7 @@ static char *tls_opt_randfile = NULL;
static
void
tls_report_error
(
void
);
static
void
tls_info_cb
(
SSL
*
ssl
,
int
where
,
int
ret
);
static
void
tls_info_cb
(
const
SSL
*
ssl
,
int
where
,
int
ret
);
static
int
tls_verify_cb
(
int
ok
,
X509_STORE_CTX
*
ctx
);
static
int
tls_verify_ok
(
int
ok
,
X509_STORE_CTX
*
ctx
);
static
RSA
*
tls_tmp_rsa_cb
(
SSL
*
ssl
,
int
is_export
,
int
key_length
);
...
...
@@ -1371,11 +1371,11 @@ ldap_int_tls_start ( LDAP *ld, LDAPConn *conn, LDAPURLDesc *srv )
/* Derived from openssl/apps/s_cb.c */
static
void
tls_info_cb
(
SSL
*
ssl
,
int
where
,
int
ret
)
tls_info_cb
(
const
SSL
*
ssl
,
int
where
,
int
ret
)
{
int
w
;
char
*
op
;
char
*
state
=
SSL_state_string_long
(
ssl
);
char
*
state
=
(
char
*
)
SSL_state_string_long
(
ssl
);
w
=
where
&
~
SSL_ST_MASK
;
if
(
w
&
SSL_ST_CONNECT
)
{
...
...
@@ -1403,8 +1403,8 @@ tls_info_cb( SSL *ssl, int where, int ret )
#endif
}
else
if
(
where
&
SSL_CB_ALERT
)
{
char
*
atype
=
SSL_alert_type_string_long
(
ret
);
char
*
adesc
=
SSL_alert_desc_string_long
(
ret
);
char
*
atype
=
(
char
*
)
SSL_alert_type_string_long
(
ret
);
char
*
adesc
=
(
char
*
)
SSL_alert_desc_string_long
(
ret
);
op
=
(
where
&
SSL_CB_READ
)
?
"read"
:
"write"
;
#ifdef HAVE_EBCDIC
if
(
atype
)
{
...
...
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