From 853b65ec15655aeb10ef6b0f8450b3e419d59831 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 3 Oct 2008 15:57:19 +0000 Subject: [PATCH] DEVEL15-rx-windows-dpf-20081003 LICENSE MIT dpf on windows is conditional on rxdebug_active, not rx_debugFile (cherry picked from commit b8caeee989fcc096a1846c87b088263d3db130d9) --- src/rx/rx_globals.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 -- 2.39.5