mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
184. [cleanup] Variables/functions which began with two leading
underscores were made to conform to the ANSI/ISO standard, which says that such names are reserved.
This commit is contained in:
@@ -39,9 +39,9 @@
|
||||
#include <dns/ttl.h>
|
||||
|
||||
#define RETERR(x) do { \
|
||||
isc_result_t __r = (x); \
|
||||
if (__r != ISC_R_SUCCESS) \
|
||||
return (__r); \
|
||||
isc_result_t _r = (x); \
|
||||
if (_r != ISC_R_SUCCESS) \
|
||||
return (_r); \
|
||||
} while (0)
|
||||
|
||||
struct dns_master_style {
|
||||
|
Reference in New Issue
Block a user