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
82d17d86
Commit
82d17d86
authored
Feb 17, 2009
by
Quanah Gibson-Mount
Browse files
Warning fixes
parent
3fb35f90
Changes
7
Hide whitespace changes
Inline
Side-by-side
libraries/libldap/abandon.c
View file @
82d17d86
...
...
@@ -349,7 +349,6 @@ ldap_int_bisect_find( ber_int_t *v, ber_len_t n, ber_int_t id, int *idxp )
end
,
rc
=
0
;
assert
(
n
>=
0
);
assert
(
id
>=
0
);
begin
=
0
;
...
...
@@ -410,7 +409,6 @@ ldap_int_bisect_insert( ber_int_t **vp, ber_len_t *np, int id, int idx )
assert
(
vp
!=
NULL
);
assert
(
np
!=
NULL
);
assert
(
*
np
>=
0
);
assert
(
idx
>=
0
);
assert
(
(
unsigned
)
idx
<=
*
np
);
...
...
@@ -451,7 +449,6 @@ ldap_int_bisect_delete( ber_int_t **vp, ber_len_t *np, int id, int idx )
assert
(
vp
!=
NULL
);
assert
(
np
!=
NULL
);
assert
(
*
np
>=
0
);
assert
(
idx
>=
0
);
assert
(
(
unsigned
)
idx
<
*
np
);
...
...
libraries/libldap/gssapi.c
View file @
82d17d86
...
...
@@ -351,8 +351,6 @@ map_gsserr2ldap(
int
gss_rc
,
OM_uint32
minor_status
)
{
OM_uint32
min2
;
OM_uint32
msg_ctx
=
0
;
char
msg
[
256
];
Debug
(
LDAP_DEBUG_ANY
,
"%s
\n
"
,
...
...
@@ -561,7 +559,7 @@ guess_service_principal(
}
ret
=
snprintf
(
svc_principal
,
svc_principal_size
-
1
,
principal_fmt
,
str
);
if
(
ret
<
0
||
ret
>=
svc_principal_size
-
1
)
{
if
(
ret
<
0
||
(
size_t
)
ret
+
1
>=
svc_principal_size
)
{
ld
->
ld_errno
=
LDAP_LOCAL_ERROR
;
return
ld
->
ld_errno
;
}
...
...
@@ -996,7 +994,9 @@ ldap_gssapi_bind(
LDAP
*
ld
,
LDAP_CONST
char
*
dn
,
LDAP_CONST
char
*
creds
)
{
return
LDAP_NOT_SUPPORTED
;
}
{
return
LDAP_NOT_SUPPORTED
;
}
int
ldap_gssapi_bind_s
(
...
...
libraries/libldap/ldap-int.h
View file @
82d17d86
...
...
@@ -694,6 +694,16 @@ LDAP_F (void) ldap_int_tls_destroy LDAP_P(( struct ldapoptions *lo ));
LDAP_F
(
char
**
)
ldap_value_dup
LDAP_P
((
char
*
const
*
vals
));
/*
* in gssapi.c
*/
#ifdef HAVE_GSSAPI
LDAP_F
(
int
)
ldap_int_gssapi_get_option
LDAP_P
((
LDAP
*
ld
,
int
option
,
void
*
arg
));
LDAP_F
(
int
)
ldap_int_gssapi_set_option
LDAP_P
((
LDAP
*
ld
,
int
option
,
void
*
arg
));
LDAP_F
(
int
)
ldap_int_gssapi_config
LDAP_P
((
struct
ldapoptions
*
lo
,
int
option
,
const
char
*
arg
));
LDAP_F
(
void
)
ldap_int_gssapi_close
LDAP_P
((
LDAP
*
ld
,
LDAPConn
*
lc
));
#endif
LDAP_END_DECL
#endif
/* _LDAP_INT_H */
libraries/libldap/os-ip.c
View file @
82d17d86
...
...
@@ -207,7 +207,7 @@ ldap_pvt_is_socket_ready(LDAP *ld, int s)
==
AC_SOCKET_ERROR
)
{
/* XXX: needs to be replace with ber_stream_read() */
int
rc
=
read
(
s
,
&
ch
,
1
);
(
void
)
read
(
s
,
&
ch
,
1
);
TRACE
;
return
-
1
;
}
...
...
libraries/libldap/os-local.c
View file @
82d17d86
...
...
@@ -149,7 +149,7 @@ ldap_pvt_is_socket_ready(LDAP *ld, int s)
==
AC_SOCKET_ERROR
)
{
/* XXX: needs to be replace with ber_stream_read() */
int
rc
=
read
(
s
,
&
ch
,
1
);
(
void
)
read
(
s
,
&
ch
,
1
);
TRACE
;
return
-
1
;
}
...
...
libraries/libldap/result.c
View file @
82d17d86
...
...
@@ -106,7 +106,6 @@ ldap_result(
struct
timeval
*
timeout
,
LDAPMessage
**
result
)
{
LDAPMessage
*
lm
;
int
rc
;
assert
(
ld
!=
NULL
);
...
...
@@ -1384,7 +1383,6 @@ ldap_abandoned( LDAP *ld, ber_int_t msgid, int *idxp )
assert
(
idxp
!=
NULL
);
assert
(
msgid
>=
0
);
assert
(
ld
->
ld_nabandoned
>=
0
);
return
ldap_int_bisect_find
(
ld
->
ld_abandoned
,
ld
->
ld_nabandoned
,
msgid
,
idxp
);
}
...
...
libraries/liblutil/meter.c
View file @
82d17d86
...
...
@@ -141,7 +141,6 @@ lutil_meter_update (
int
rc
;
assert
(
meter
!=
NULL
);
assert
(
position
>=
0
);
lutil_get_now
(
&
now
);
...
...
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