From: Jeffrey Altman Date: Tue, 28 May 2013 15:40:12 +0000 (-0400) Subject: Windows: cm_DumpServers "down" is string not enum X-Git-Tag: upstream/1.8.0_pre1^2~1140 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=1e8788927ed61c7bcc1d8ccb2c50582488fcfb6e;p=packages%2Fo%2Fopenafs.git Windows: cm_DumpServers "down" is string not enum When dumping the state of the servers, "down" is a string not an enum value. Change-Id: I603755cf0db28515d01bc03253a4d3e6528b13aa Reviewed-on: http://gerrit.openafs.org/9946 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/WINNT/afsd/cm_server.c b/src/WINNT/afsd/cm_server.c index 5852a755a..1135973d5 100644 --- a/src/WINNT/afsd/cm_server.c +++ b/src/WINNT/afsd/cm_server.c @@ -1593,7 +1593,7 @@ int cm_DumpServers(FILE *outputFile, char *cookie, int lock) cookie, tsp, tsp->cellp ? tsp->cellp->name : "", hoststr, ntohs(tsp->addr.sin_port), uuidstr, type, tsp->capabilities, tsp->flags, tsp->waitCount, tsp->activeRank, - (tsp->flags & CM_SERVERFLAG_DOWN) ? down : "up", + (tsp->flags & CM_SERVERFLAG_DOWN) ? "down" : "up", tsp->refCount); WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL); }