From 84a0ef8e1a076e3fb03d8cb6bb72bba63679a700 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sat, 3 Feb 2007 18:03:55 +0000 Subject: [PATCH] windows-buf-dump-fix-20070203 restore the missing format string to the Buffer Hash Table Dump routine --- src/WINNT/afsd/cm_buf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/WINNT/afsd/cm_buf.c b/src/WINNT/afsd/cm_buf.c index 4f5f22728c..4669c1fe98 100644 --- a/src/WINNT/afsd/cm_buf.c +++ b/src/WINNT/afsd/cm_buf.c @@ -1570,7 +1570,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);