From: reyk Date: Wed, 23 Jul 2014 12:01:27 +0000 (+0000) Subject: always enable DPRINTF with compiled with DEBUG X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ae9552a50037d163af4e1d6aecaa15ded193890f;p=openbsd always enable DPRINTF with compiled with DEBUG --- 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)