mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 13:08:06 +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
|
||||
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);
|
||||
mask = 1 << shift;
|
||||
|
||||
if (bit)
|
||||
if (bit != 0)
|
||||
array[index / 8] |= mask;
|
||||
else
|
||||
array[index / 8] &= (~mask & 0xFF);
|
||||
@ -723,7 +722,9 @@ dns_name_equal(dns_name_t *name1, dns_name_t *name2) {
|
||||
return (ISC_FALSE);
|
||||
if (count == 0)
|
||||
count = 256;
|
||||
/* number of bytes */
|
||||
/*
|
||||
* Number of bytes.
|
||||
*/
|
||||
count = (count + 7) / 8;
|
||||
while (count > 0) {
|
||||
count--;
|
||||
|
Loading…
x
Reference in New Issue
Block a user