From ae9552a50037d163af4e1d6aecaa15ded193890f Mon Sep 17 00:00:00 2001 From: reyk Date: Wed, 23 Jul 2014 12:01:27 +0000 Subject: [PATCH] always enable DPRINTF with compiled with DEBUG --- usr.sbin/httpd/httpd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/httpd/httpd.h b/usr.sbin/httpd/httpd.h index 0716e04468e..75d6e44de3e 100644 --- a/usr.sbin/httpd/httpd.h +++ b/usr.sbin/httpd/httpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: httpd.h,v 1.4 2014/07/16 10:25:28 reyk Exp $ */ +/* $OpenBSD: httpd.h,v 1.5 2014/07/23 12:01:27 reyk Exp $ */ /* * Copyright (c) 2006 - 2014 Reyk Floeter @@ -72,7 +72,7 @@ enum httpchunk { TOREAD_HTTP_NONE = -5 }; -#if DEBUG > 1 +#if DEBUG #define DPRINTF log_debug #else #define DPRINTF(x...) do {} while(0) -- 2.20.1