From: wessels <> Date: Wed, 1 Apr 1998 05:36:32 +0000 (+0000) Subject: purify UMR fix X-Git-Tag: SQUID_3_0_PRE1~3671 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67a5354634d3d1fc0f155d9b1fc4e6baee7c918a;p=thirdparty%2Fsquid.git purify UMR fix --- diff --git a/src/icmp.cc b/src/icmp.cc index 3dccf00eec..6dbc942320 100644 --- a/src/icmp.cc +++ b/src/icmp.cc @@ -1,6 +1,6 @@ /* - * $Id: icmp.cc,v 1.58 1998/03/30 23:00:12 wessels Exp $ + * $Id: icmp.cc,v 1.59 1998/03/31 22:36:32 wessels Exp $ * * DEBUG: section 37 ICMP Routines * AUTHOR: Duane Wessels @@ -45,7 +45,7 @@ static void icmpHandleSourcePing(const struct sockaddr_in *from, const char *buf static void icmpSendEcho(struct in_addr to, int opcode, const char *payload, int len) { - pingerEchoData pecho; + static pingerEchoData pecho; if (payload && len == 0) len = strlen(payload); pecho.to = to;