From: Jeffrey Altman Date: Fri, 3 Oct 2008 15:57:19 +0000 (+0000) Subject: DEVEL15-rx-windows-dpf-20081003 X-Git-Tag: openafs-devel-1_5_54~14 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=853b65ec15655aeb10ef6b0f8450b3e419d59831;p=packages%2Fo%2Fopenafs.git DEVEL15-rx-windows-dpf-20081003 LICENSE MIT dpf on windows is conditional on rxdebug_active, not rx_debugFile (cherry picked from commit b8caeee989fcc096a1846c87b088263d3db130d9) --- diff --git a/src/rx/rx_globals.h b/src/rx/rx_globals.h index c9dd2b034..322af632d 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