From 1e8788927ed61c7bcc1d8ccb2c50582488fcfb6e Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Tue, 28 May 2013 11:40:12 -0400 Subject: [PATCH] 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 --- src/WINNT/afsd/cm_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5