From: Jeffrey Altman Date: Sat, 3 Feb 2007 18:04:51 +0000 (+0000) Subject: DEVEL15-windows-buf-dump-fix-20070203 X-Git-Tag: openafs-devel-1_5_15~45 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=0fcb42fc93d41c4368ad47304314c3bdf5e71206;p=packages%2Fo%2Fopenafs.git DEVEL15-windows-buf-dump-fix-20070203 restore the missing format string to the Buffer Hash Table Dump routine (cherry picked from commit 84a0ef8e1a076e3fb03d8cb6bb72bba63679a700) --- diff --git a/src/WINNT/afsd/cm_buf.c b/src/WINNT/afsd/cm_buf.c index 4cac4385c..19a974162 100644 --- a/src/WINNT/afsd/cm_buf.c +++ b/src/WINNT/afsd/cm_buf.c @@ -1622,7 +1622,9 @@ int cm_DumpBufHashTable(FILE *outputFile, char *cookie, int lock) { if (bp->refCount) { - StringCbPrintfA(output, sizeof(output), "vnode=%d, unique=%d), size=%d refCount=%d\r\n", + StringCbPrintfA(output, sizeof(output), + "%s bp=0x%08X, hash=%d, fid (cell=%d, volume=%d, " + "vnode=%d, unique=%d), size=%d refCount=%d\r\n", cookie, (void *)bp, i, bp->fid.cell, bp->fid.volume, bp->fid.vnode, bp->fid.unique, bp->size, bp->refCount); WriteFile(outputFile, output, (DWORD)strlen(output), &zilch, NULL);