From b4f323eaeb5f010cd0a0be09f29c4016d1a14fef Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Mon, 19 Mar 2007 13:44:41 +0000 Subject: [PATCH] windows-var-renaming-20070319 give rx call variables a distinct name from cm call variables in order to avoid confusion --- src/WINNT/afsd/cm_server.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/WINNT/afsd/cm_server.c b/src/WINNT/afsd/cm_server.c index 8ab1e63c8..e687cc499 100644 --- a/src/WINNT/afsd/cm_server.c +++ b/src/WINNT/afsd/cm_server.c @@ -45,7 +45,7 @@ cm_PingServer(cm_server_t *tsp) long code; int wasDown = 0; cm_conn_t *connp; - struct rx_connection * callp; + struct rx_connection * rxconnp; long secs; long usecs; Capabilities caps = {0, 0}; @@ -89,11 +89,11 @@ cm_PingServer(cm_server_t *tsp) } else { /* file server */ - callp = cm_GetRxConn(connp); - code = RXAFS_GetCapabilities(callp, &caps); + rxconnp = cm_GetRxConn(connp); + code = RXAFS_GetCapabilities(rxconnp, &caps); if (code == RXGEN_OPCODE) - code = RXAFS_GetTime(callp, &secs, &usecs); - rx_PutConnection(callp); + code = RXAFS_GetTime(rxconnp, &secs, &usecs); + rx_PutConnection(rxconnp); } if (wasDown) rx_SetConnDeadTime(connp->callp, ConnDeadtimeout); -- 2.39.5