diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-18 06:58:44 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-18 06:58:44 +0000 |
commit | 75b1bfea2ec70f7408f7a35d7fba606774176333 (patch) | |
tree | ac177a8fbbe63a8a9e5ae83d519999a9f7f747cd /lib/libc/resolv/res_query.c | |
parent | ceeb430497959309c5dcbbf6dc0717588a4c2fa1 (diff) | |
download | FreeBSD-src-75b1bfea2ec70f7408f7a35d7fba606774176333.zip FreeBSD-src-75b1bfea2ec70f7408f7a35d7fba606774176333.tar.gz |
MFC r292250:
Allow users override `DEBUG` on the command line via DEBUG_FLAGS="-DDEBUG" with
lib/libc/resolv by conditionalizing its definition
Reviewed by: ume, vangyzen
Differential Revision: https://reviews.freebsd.org/D4519
Diffstat (limited to 'lib/libc/resolv/res_query.c')
-rw-r--r-- | lib/libc/resolv/res_query.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/resolv/res_query.c b/lib/libc/resolv/res_query.c index 4ae97f6..5992edd 100644 --- a/lib/libc/resolv/res_query.c +++ b/lib/libc/resolv/res_query.c @@ -88,7 +88,9 @@ __FBSDID("$FreeBSD$"); #include "port_after.h" /* Options. Leave them on. */ -#define DEBUG +#ifndef DEBUG +#define DEBUG +#endif #if PACKETSZ > 1024 #define MAXPACKET PACKETSZ |