From: Jeffrey Altman Date: Fri, 3 Oct 2008 15:35:15 +0000 (+0000) Subject: rx-windows-dpf-20081003 X-Git-Tag: openafs-devel-1_5_61~782 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=b8caeee989fcc096a1846c87b088263d3db130d9;p=packages%2Fo%2Fopenafs.git rx-windows-dpf-20081003 LICENSE MIT dpf on windows is conditional on rxdebug_active, not rx_debugFile --- diff --git a/src/rx/rx_globals.h b/src/rx/rx_globals.h index 467986ea0..78ba9333b 100644 --- a/src/rx/rx_globals.h +++ b/src/rx/rx_globals.h @@ -541,11 +541,7 @@ EXT FILE *rxevent_debugFile; /* Set to an stdio descriptor for event logging to #define rx_Log rx_debugFile #ifdef AFS_NT40_ENV EXT int rxdebug_active; -#if !defined(_WIN64) -#define dpf(args) do { if (rx_debugFile) rxi_DebugPrint args; } while (0) -#else -#define dpf(args) -#endif +#define dpf(args) do { if (rxdebug_active) rxi_DebugPrint args; } while (0) #else #ifdef DPF_FSLOG #define dpf(args) FSLog args