2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-04 16:45:24 +00:00

Fixup the missing clang-format bits

This commit is contained in:
Ondřej Surý
2020-02-16 17:34:24 +01:00
parent cbb127eb43
commit 3832e3ecc9
5 changed files with 50 additions and 56 deletions

View File

@@ -42,12 +42,13 @@
#include <dig/dig.h>
#include <pk11/site.h>
#define ADD_STRING(b, s) \
{ \
if (strlen(s) >= isc_buffer_availablelength(b)) \
return ((ISC_R_NOSPACE)); \
else \
isc_buffer_putstr(b, s); \
#define ADD_STRING(b, s) \
{ \
if (strlen(s) >= isc_buffer_availablelength(b)) { \
return ((((ISC_R_NOSPACE)))); \
} else { \
isc_buffer_putstr(b, s); \
} \
}
#define DIG_MAX_ADDRESSES 20