From: wessels <> Date: Thu, 6 Nov 1997 02:52:22 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~4565 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c323c5fc1df86dde29cc1850c30426f32a89d2d;p=thirdparty%2Fsquid.git compiler --- diff --git a/src/client_side.cc b/src/client_side.cc index a4b2136e76..5a5f40f0e3 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.141 1997/11/05 05:29:20 wessels Exp $ + * $Id: client_side.cc,v 1.142 1997/11/05 19:52:22 wessels Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -748,7 +748,7 @@ clientBuildReplyHeader(clientHttpRequest * http, return len; } -void +static void clientCacheHit(void *data, char *buf, ssize_t size) { clientHttpRequest *http = data; @@ -763,7 +763,7 @@ clientCacheHit(void *data, char *buf, ssize_t size) } } -void +static void clientSendMoreData(void *data, char *buf, ssize_t size) { clientHttpRequest *http = data; @@ -1029,7 +1029,7 @@ icpHandleIMSComplete(int fd, char *bufnotused, int size, int errflag, void *data * Below, we check whether the object is a hit or a miss. If it's a hit, * we check whether the object is still valid or whether it is a MISS_TTL. */ -void +static void icpProcessRequest(int fd, clientHttpRequest * http) { char *url = http->url; diff --git a/src/icmp.cc b/src/icmp.cc index 815e44af18..7b9d0f7899 100644 --- a/src/icmp.cc +++ b/src/icmp.cc @@ -1,6 +1,6 @@ /* - * $Id: icmp.cc,v 1.47 1997/11/03 22:43:13 wessels Exp $ + * $Id: icmp.cc,v 1.48 1997/11/05 19:52:22 wessels Exp $ * * DEBUG: section 37 ICMP Routines * AUTHOR: Duane Wessels @@ -181,13 +181,7 @@ icmpHandleSourcePing(const struct sockaddr_in *from, const char *buf) if (entry->lock_count == 0) return; /* call neighborsUdpAck even if ping_status != PING_WAITING */ - neighborsUdpAck(icmp_sock, - url, - &header, - from, - entry, - NULL, - 0); + neighborsUdpAck(url, &header, from, entry); } #endif /* USE_ICMP */