]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ftp.cc
Policy: use USE_* from code wrappers and ENABLE_* for conditionals.
[thirdparty/squid.git] / src / ftp.cc
index 1598a9861ea86dbf41f4bfd4fd015ff5e28d1851..ed3f22dcebbba00e9ed4100745c1b37085eff9b3 100644 (file)
@@ -57,7 +57,7 @@
 #include "URLScheme.h"
 #include "wordlist.h"
 
-#if DELAY_POOLS
+#if USE_DELAY_POOLS
 #include "DelayPools.h"
 #include "MemObject.h"
 #endif
@@ -1199,7 +1199,7 @@ FtpStateData::dataRead(const CommIoCbParams &io)
     if (io.flag == COMM_OK && io.size > 0) {
         debugs(9,5,HERE << "appended " << io.size << " bytes to readBuf");
         data.readBuf->appended(io.size);
-#if DELAY_POOLS
+#if USE_DELAY_POOLS
         DelayId delayId = entry->mem_obj->mostBytesAllowed();
         delayId.bytesIn(io.size);
 #endif