]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix for --enable-cpu-profiling mode. Do not change PROF_start() arg.
authorwessels <>
Sat, 21 Apr 2007 13:10:06 +0000 (13:10 +0000)
committerwessels <>
Sat, 21 Apr 2007 13:10:06 +0000 (13:10 +0000)
src/store_client.cc

index 9943b94305dec25179bd9a668786de956fe380d0..fe40aaab1e0403fadbbb8e904a6024007f9b4def 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_client.cc,v 1.154 2007/04/20 23:53:42 wessels Exp $
+ * $Id: store_client.cc,v 1.155 2007/04/21 07:10:06 wessels Exp $
  *
  * DEBUG: section 90    Storage Manager Client-Side Interface
  * AUTHOR: Duane Wessels
@@ -709,7 +709,7 @@ StoreEntry::invokeHandlers()
     dlink_node *nx = NULL;
     dlink_node *node;
 
-    PROF_start(StoreEntry::invokeHandlers);
+    PROF_start(InvokeHandlers);
 
     debug(90, 3) ("StoreEntry::invokeHandlers: %s\n", getMD5Text());
     /* walk the entire list looking for valid callbacks */
@@ -727,7 +727,7 @@ StoreEntry::invokeHandlers()
 
         storeClientCopy2(this, sc);
     }
-    PROF_stop(StoreEntry::invokeHandlers);
+    PROF_stop(InvokeHandlers);
 }
 
 int