From: erickson Date: Tue, 11 Mar 2008 14:40:55 +0000 (+0000) Subject: rolling back change in changeset 1277 for default osrf_clearbuf handling. not sure... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a6f8b3533f057c056723f31201c135fa5ad13b8c;p=working%2FOpenSRF.git rolling back change in changeset 1277 for default osrf_clearbuf handling. not sure of the exact problem yet, suffice to say the services wont start with the "!!!..." version of clearbuf enabled git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1280 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/include/opensrf/utils.h b/include/opensrf/utils.h index dcdba02..a42bc06 100644 --- a/include/opensrf/utils.h +++ b/include/opensrf/utils.h @@ -41,7 +41,7 @@ GNU General Public License for more details. memset( ptr, 0, size );\ } while(0) -#ifdef NDEBUG +#ifndef NDEBUG // The original ... replace with noop once no more errors occur in NDEBUG mode #define osrf_clearbuf( s, n ) memset( s, 0, n ) #else