From: wessels <> Date: Fri, 19 May 2006 22:49:13 +0000 (+0000) Subject: put correct function names in debugging statements X-Git-Tag: SQUID_3_0_PRE4~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=634fec05eeb4662fd61fb3006626c2fc27c3c64b;p=thirdparty%2Fsquid.git put correct function names in debugging statements --- diff --git a/src/fs/ufs/store_io_ufs.cc b/src/fs/ufs/store_io_ufs.cc index 7916c63bf2..17219748f1 100644 --- a/src/fs/ufs/store_io_ufs.cc +++ b/src/fs/ufs/store_io_ufs.cc @@ -1,6 +1,6 @@ /* - * $Id: store_io_ufs.cc,v 1.28 2004/12/20 16:30:45 robertc Exp $ + * $Id: store_io_ufs.cc,v 1.29 2006/05/19 16:49:13 wessels Exp $ * * DEBUG: section 79 Storage Manager UFS Interface * AUTHOR: Duane Wessels @@ -103,7 +103,7 @@ UFSStoreState::ioCompletedNotification() { if (opening) { opening = false; - debug(79, 3) ("storeDiskdOpenDone: dirno %d, fileno %08x status %d\n", + debug(79, 3) ("UFSStoreState::ioCompletedNotification: dirno %d, fileno %08x status %d\n", swap_dirn, swap_filen, theFile->error()); assert (FILE_MODE(mode) == O_RDONLY); openDone(); @@ -113,7 +113,7 @@ UFSStoreState::ioCompletedNotification() if (creating) { creating = false; - debug(79, 3) ("storeDiskdCreateDone: dirno %d, fileno %08x status %d\n", + debug(79, 3) ("UFSStoreState::ioCompletedNotification: dirno %d, fileno %08x status %d\n", swap_dirn, swap_filen, theFile->error()); openDone(); @@ -221,7 +221,7 @@ UFSStoreState::readCompleted(const char *buf, int len, int errflag, RefCount 0)