From: Jeffrey Altman Date: Wed, 20 Oct 2010 23:23:11 +0000 (-0400) Subject: Rx: rx_stats_active not RXDEBUG X-Git-Tag: upstream/1.8.0_pre1^2~4645 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=929ca25d6d3fef07ea7c103dcd43a2658cdf71bd;p=packages%2Fo%2Fopenafs.git Rx: rx_stats_active not RXDEBUG In rx_StatsOnOff() the assignment to rx_stats_active should not be protected by RXDEBUG. Change-Id: I5eb84f6d7049c4d923010e53a49ee7eb321495f4 Reviewed-on: http://gerrit.openafs.org/3016 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/rx/rx.c b/src/rx/rx.c index d2e343c4f..f09d519ba 100644 --- a/src/rx/rx.c +++ b/src/rx/rx.c @@ -7074,9 +7074,7 @@ rx_DebugOnOff(int on) void rx_StatsOnOff(int on) { -#ifdef RXDEBUG rx_stats_active = on; -#endif }