2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +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:
David Lawrence
2000-05-13 22:07:57 +00:00
parent 873484b40d
commit 7c7d67b5d8

View File

@@ -15,7 +15,7 @@
* 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 */
@@ -276,6 +276,11 @@ fromstruct_in_a6(dns_rdataclass_t rdclass, dns_rdatatype_t type, void *source,
octets = 16 - prefixlen / 8;
/*
* XXXDCL shut up IRIX compiler until this function is finished.
*/
UNUSED(octets);
return (ISC_R_NOTIMPLEMENTED);
}