From: hno <> Date: Sun, 31 Mar 2002 21:50:21 +0000 (+0000) Subject: const correctness fix by Guido X-Git-Tag: SQUID_3_0_PRE1~1151 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6501c5949010174a75cff38e3b99e30d29b94d6a;p=thirdparty%2Fsquid.git const correctness fix by Guido --- diff --git a/src/icmp.cc b/src/icmp.cc index 573d662bd8..040d3ed95a 100644 --- a/src/icmp.cc +++ b/src/icmp.cc @@ -1,6 +1,6 @@ /* - * $Id: icmp.cc,v 1.73 2001/01/12 00:37:18 wessels Exp $ + * $Id: icmp.cc,v 1.74 2002/03/31 14:50:21 hno Exp $ * * DEBUG: section 37 ICMP Routines * AUTHOR: Duane Wessels @@ -190,7 +190,7 @@ void icmpOpen(void) { #if USE_ICMP - char *args[2]; + const char *args[2]; int x; int rfd; int wfd;