]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove const from netdbClosestParent()
authorwessels <>
Thu, 21 May 1998 09:48:19 +0000 (09:48 +0000)
committerwessels <>
Thu, 21 May 1998 09:48:19 +0000 (09:48 +0000)
src/net_db.cc
src/protos.h

index 951c858e4b44b0bf1000e02a218477dc2bdc64f7..5bae2d63af37f28b4bb4fb90ac57ab0d682c767f 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.104 1998/05/21 00:46:17 wessels Exp $
+ * $Id: net_db.cc,v 1.105 1998/05/21 03:48:19 wessels Exp $
  *
  * DEBUG: section 37    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -1071,7 +1071,7 @@ netdbExchangeStart(void *data)
 }
 
 peer *
-netdbClosestParent(const request_t *request)
+netdbClosestParent(request_t *request)
 {
 #if USE_ICMP
     peer *p = NULL;
index ab9df96e3be72c7ff917b2f7f98aac99d961c223..821b634d70514bc9e44ce4cf731a52571e775ac3 100644 (file)
@@ -541,7 +541,7 @@ extern int netdbHostPeerRtt(const char *host, peer * peer);
 extern void netdbBinaryExchange(StoreEntry *);
 extern EVH netdbExchangeStart;
 extern void netdbExchangeUpdatePeer(struct in_addr, peer *, double, double);
-extern peer *netdbClosestParent(const request_t *);
+extern peer *netdbClosestParent(request_t *);
 
 extern void cachemgrStart(int fd, request_t * request, StoreEntry * entry);
 extern void cachemgrRegister(const char *, const char *, OBJH *, int);