mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
Fixed IRIX warning:
"./rdata/in_1/a6_38.c", line 259: remark(1552): variable "octets" was set but never used by using UNUSED() on this stack variable. I didn't take it out altogether because this function is not yet finished, but someone was starting to do some work on it and I didn't want to undo that.
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: a6_38.c,v 1.29 2000/05/08 16:12:27 tale Exp $ */
|
/* $Id: a6_38.c,v 1.30 2000/05/13 22:07:57 tale Exp $ */
|
||||||
|
|
||||||
/* draft-ietf-ipngwg-dns-lookups-03.txt */
|
/* draft-ietf-ipngwg-dns-lookups-03.txt */
|
||||||
|
|
||||||
@@ -276,6 +276,11 @@ fromstruct_in_a6(dns_rdataclass_t rdclass, dns_rdatatype_t type, void *source,
|
|||||||
|
|
||||||
octets = 16 - prefixlen / 8;
|
octets = 16 - prefixlen / 8;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* XXXDCL shut up IRIX compiler until this function is finished.
|
||||||
|
*/
|
||||||
|
UNUSED(octets);
|
||||||
|
|
||||||
return (ISC_R_NOTIMPLEMENTED);
|
return (ISC_R_NOTIMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user