mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 21:17:54 +00:00
Silence IRIX warning:
"name.c", line 201: remark(1552): variable "byte" was set but never used
This commit is contained in:
parent
0911d40d83
commit
d3d03f736d
@ -198,13 +198,12 @@ get_bit(unsigned char *array, unsigned int index) {
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
set_bit(unsigned char *array, unsigned int index, unsigned int bit) {
|
set_bit(unsigned char *array, unsigned int index, unsigned int bit) {
|
||||||
unsigned int byte, shift, mask;
|
unsigned int shift, mask;
|
||||||
|
|
||||||
byte = array[index / 8];
|
|
||||||
shift = 7 - (index % 8);
|
shift = 7 - (index % 8);
|
||||||
mask = 1 << shift;
|
mask = 1 << shift;
|
||||||
|
|
||||||
if (bit)
|
if (bit != 0)
|
||||||
array[index / 8] |= mask;
|
array[index / 8] |= mask;
|
||||||
else
|
else
|
||||||
array[index / 8] &= (~mask & 0xFF);
|
array[index / 8] &= (~mask & 0xFF);
|
||||||
@ -723,7 +722,9 @@ dns_name_equal(dns_name_t *name1, dns_name_t *name2) {
|
|||||||
return (ISC_FALSE);
|
return (ISC_FALSE);
|
||||||
if (count == 0)
|
if (count == 0)
|
||||||
count = 256;
|
count = 256;
|
||||||
/* number of bytes */
|
/*
|
||||||
|
* Number of bytes.
|
||||||
|
*/
|
||||||
count = (count + 7) / 8;
|
count = (count + 7) / 8;
|
||||||
while (count > 0) {
|
while (count > 0) {
|
||||||
count--;
|
count--;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user