Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/httpd fix previous: have_debug was reversed.



details:   https://anonhg.NetBSD.org/src/rev/d92130b6b15b
branches:  trunk
changeset: 446006:d92130b6b15b
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Nov 20 01:19:51 2018 +0000

description:
fix previous: have_debug was reversed.

diffstat:

 libexec/httpd/bozohttpd.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r abfd3bdca25b -r d92130b6b15b libexec/httpd/bozohttpd.h
--- a/libexec/httpd/bozohttpd.h Tue Nov 20 01:15:50 2018 +0000
+++ b/libexec/httpd/bozohttpd.h Tue Nov 20 01:19:51 2018 +0000
@@ -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 @@
 #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 *);



Home | Main Index | Thread Index | Old Index