* sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
variables const to avoid compiler warnings.
This commit is contained in:
parent
0b25a49a94
commit
d4ed756168
@ -12,6 +12,9 @@
|
|||||||
|
|
||||||
2006-10-02 Dmitry V. Levin <ldv@altlinux.org>
|
2006-10-02 Dmitry V. Levin <ldv@altlinux.org>
|
||||||
|
|
||||||
|
* sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
|
||||||
|
variables const to avoid compiler warnings.
|
||||||
|
|
||||||
* io/fts.c (fts_close): Remove redundant checks.
|
* io/fts.c (fts_close): Remove redundant checks.
|
||||||
(fts_build): Likewise.
|
(fts_build): Likewise.
|
||||||
(fts_palloc): Likewise.
|
(fts_palloc): Likewise.
|
||||||
|
@ -1291,8 +1291,8 @@ match_prefix (const struct sockaddr_storage *ss,
|
|||||||
for (idx = 0; ; ++idx)
|
for (idx = 0; ; ++idx)
|
||||||
{
|
{
|
||||||
unsigned int bits = list[idx].bits;
|
unsigned int bits = list[idx].bits;
|
||||||
uint8_t *mask = list[idx].prefix.s6_addr;
|
const uint8_t *mask = list[idx].prefix.s6_addr;
|
||||||
uint8_t *val = in6->sin6_addr.s6_addr;
|
const uint8_t *val = in6->sin6_addr.s6_addr;
|
||||||
|
|
||||||
while (bits >= 8)
|
while (bits >= 8)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user