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/7a8ae91a5bf0
branches: trunk
changeset: 994743:7a8ae91a5bf0
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 8f8783ec43bd -r 7a8ae91a5bf0 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