diff options
| author | mrg <mrg@NetBSD.org> | 2018-11-20 01:19:51 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 2018-11-20 01:19:51 +0000 |
| commit | 98a5aa1a28e73c9871ef074af3b8f2a00889e04e (patch) | |
| tree | 09ea45003fd5c290d51dee91c5c9f09179118e70 /libexec | |
| parent | dab6fb8fb96a4db0818f49531bbe73b89ea817cb (diff) | |
fix previous: have_debug was reversed.
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/httpd/bozohttpd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/httpd/bozohttpd.h b/libexec/httpd/bozohttpd.h index 989b8b5a3c0..3d42cb5b955 100644 --- a/libexec/httpd/bozohttpd.h +++ b/libexec/httpd/bozohttpd.h @@ -1,4 +1,4 @@ -/* $NetBSD: bozohttpd.h,v 1.52 2018/11/20 01:15:50 mrg Exp $ */ +/* $NetBSD: bozohttpd.h,v 1.53 2018/11/20 01:19:51 mrg Exp $ */ /* $eterna: bozohttpd.h,v 1.39 2011/11/18 09:21:15 mrg Exp $ */ @@ -225,10 +225,10 @@ typedef struct bozoprefs_t { #ifndef NO_DEBUG void debug__(bozohttpd_t *, int, const char *, ...) BOZO_PRINTFLIKE(3, 4); #define debug(x) debug__ x -#define have_debug (0) +#define have_debug (1) #else #define debug(x) -#define have_debug (1) +#define have_debug (0) #endif /* NO_DEBUG */ int bozo_http_error(bozohttpd_t *, int, bozo_httpreq_t *, const char *); |
