From: wessels <> Date: Tue, 15 Sep 1998 12:23:05 +0000 (+0000) Subject: removed redirectUnregister X-Git-Tag: SQUID_3_0_PRE1~2720 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2549c064ec286d9a4d95b097845dae56caa590d9;p=thirdparty%2Fsquid.git removed redirectUnregister --- diff --git a/src/client_side.cc b/src/client_side.cc index b169ffc9ca..2a2e508e49 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.394 1998/09/14 21:28:00 wessels Exp $ + * $Id: client_side.cc,v 1.395 1998/09/15 06:23:05 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -606,8 +606,6 @@ httpRequestFree(void *data) clientUpdateCounters(http); clientdbUpdate(conn->peer.sin_addr, http->log_type, PROTO_HTTP, http->out.size); } - if (http->redirect_state == REDIRECT_PENDING) - redirectUnregister(http->uri, http); if (http->acl_checklist) aclChecklistFree(http->acl_checklist); if (request) diff --git a/src/protos.h b/src/protos.h index aa21750c4d..f9e2d765ef 100644 --- a/src/protos.h +++ b/src/protos.h @@ -1,6 +1,6 @@ /* - * $Id: protos.h,v 1.264 1998/09/14 22:18:00 wessels Exp $ + * $Id: protos.h,v 1.265 1998/09/15 06:23:07 wessels Exp $ * * * SQUID Internet Object Cache http://squid.nlanr.net/Squid/ @@ -635,7 +635,6 @@ extern void redirectStart(clientHttpRequest *, RH *, void *); extern void redirectOpenServers(void); extern void redirectShutdownServers(void *); extern void redirectStats(StoreEntry *); -extern int redirectUnregister(const char *url, void *); extern void redirectFreeMemory(void); extern void authenticateStart(acl_proxy_auth_user *, RH *, void *);