mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
1689. [bug] DNS_NAME_TOREGION() and DNS_NAME_SPLIT() macros
contained gratuitous semicolons. [RT #11707]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
1689. [bug] DNS_NAME_TOREGION() and DNS_NAME_SPLIT() macros
|
||||||
|
contained gratuitous semicolons. [RT #11707]
|
||||||
|
|
||||||
1688. [bug] LDFLAGS was not supported.
|
1688. [bug] LDFLAGS was not supported.
|
||||||
|
|
||||||
1687. [bug] Race condition in dispatch. [RT #10272]
|
1687. [bug] Race condition in dispatch. [RT #10272]
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: name.h,v 1.107 2004/03/18 02:58:03 marka Exp $ */
|
/* $Id: name.h,v 1.108 2004/07/22 00:09:27 marka Exp $ */
|
||||||
|
|
||||||
#ifndef DNS_NAME_H
|
#ifndef DNS_NAME_H
|
||||||
#define DNS_NAME_H 1
|
#define DNS_NAME_H 1
|
||||||
@@ -1214,7 +1214,7 @@ do { \
|
|||||||
do { \
|
do { \
|
||||||
(r)->base = (n)->ndata; \
|
(r)->base = (n)->ndata; \
|
||||||
(r)->length = (n)->length; \
|
(r)->length = (n)->length; \
|
||||||
} while (0);
|
} while (0)
|
||||||
|
|
||||||
#define DNS_NAME_SPLIT(n, l, p, s) \
|
#define DNS_NAME_SPLIT(n, l, p, s) \
|
||||||
do { \
|
do { \
|
||||||
@@ -1226,7 +1226,7 @@ do { \
|
|||||||
dns_name_getlabelsequence(_n, 0, _n->labels - _l, _p); \
|
dns_name_getlabelsequence(_n, 0, _n->labels - _l, _p); \
|
||||||
if (_s != NULL) \
|
if (_s != NULL) \
|
||||||
dns_name_getlabelsequence(_n, _n->labels - _l, _l, _s); \
|
dns_name_getlabelsequence(_n, _n->labels - _l, _l, _s); \
|
||||||
} while (0);
|
} while (0)
|
||||||
|
|
||||||
#ifdef DNS_NAME_USEINLINE
|
#ifdef DNS_NAME_USEINLINE
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user