From b5dc1903a4bca5bae099beec0b95840df7282250 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sat, 10 May 2008 16:19:35 +0000 Subject: [PATCH] udebug-display-lastyeshost-order-20080510 LICENSE MIT lastYesHost is already in network byte order. do not reorder it again when displaying it. --- src/ubik/udebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ubik/udebug.c b/src/ubik/udebug.c index 84c1b39cd..bde8dcea5 100644 --- a/src/ubik/udebug.c +++ b/src/ubik/udebug.c @@ -192,7 +192,7 @@ CommandProc(struct cmd_syndesc *as, void *arock) } else { diff = udebug.now - udebug.lastYesTime; printf("Last yes vote for %s was %d secs ago (%ssync site); \n", - afs_inet_ntoa(htonl(udebug.lastYesHost)), (int)diff, + afs_inet_ntoa(udebug.lastYesHost), (int)diff, ((udebug.lastYesState) ? "" : "not ")); diff = udebug.now - udebug.lastYesClaim; -- 2.39.5