=== modified file 'src/client_side_reply.cc' --- src/client_side_reply.cc 2012-04-25 05:29:20 +0000 +++ src/client_side_reply.cc 2012-05-08 01:00:09 +0000 @@ -646,11 +646,7 @@ if (http->redirect.status) { HttpReply *rep = new HttpReply; -#if LOG_TCP_REDIRECTS - http->logType = LOG_TCP_REDIRECT; -#endif - http->storeEntry()->releaseRequest(); rep->redirect(http->redirect.status, http->redirect.location); http->storeEntry()->replaceHttpReply(rep); @@ -1611,9 +1607,9 @@ if (http->redirect.status) { /** \li If redirection status is True force this to be a MISS */ - debugs(85, 3, "clientProcessRequest2: redirectStatus forced StoreEntry to NULL - MISS"); + debugs(85, 3, HERE << "REDIRECT status forced StoreEntry to NULL (no body on 3XX responses)"); http->storeEntry(NULL); - http->logType = LOG_TCP_MISS; + http->logType = LOG_TCP_REDIRECT; doGetMoreData(); return; } === modified file 'src/enums.h' --- src/enums.h 2012-01-03 02:19:30 +0000 +++ src/enums.h 2012-05-08 00:47:01 +0000 @@ -52,9 +52,7 @@ LOG_TCP_DENIED, LOG_TCP_DENIED_REPLY, LOG_TCP_OFFLINE_HIT, -#if LOG_TCP_REDIRECTS LOG_TCP_REDIRECT, -#endif LOG_UDP_HIT, LOG_UDP_MISS, LOG_UDP_DENIED, === modified file 'src/format/Token.cc' --- src/format/Token.cc 2012-01-20 18:55:04 +0000 +++ src/format/Token.cc 2012-05-08 00:47:17 +0000 @@ -20,9 +20,7 @@ "TCP_DENIED", "TCP_DENIED_REPLY", "TCP_OFFLINE_HIT", -#if LOG_TCP_REDIRECTS "TCP_REDIRECT", -#endif "UDP_HIT", "UDP_MISS", "UDP_DENIED",