2
0
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:
David Lawrence
2000-05-16 05:19:47 +00:00
parent 6d8cdbaff4
commit 600cfa2ba4
6 changed files with 45 additions and 40 deletions

View File

@@ -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 {