From: wessels <> Date: Thu, 28 May 1998 11:14:01 +0000 (+0000) Subject: missing static X-Git-Tag: SQUID_3_0_PRE1~3229 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5446b331f6b24228bd1163ec689df49f3970618a;p=thirdparty%2Fsquid.git missing static --- diff --git a/src/HttpReply.cc b/src/HttpReply.cc index e9629d5c60..8ee70c2db8 100644 --- a/src/HttpReply.cc +++ b/src/HttpReply.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpReply.cc,v 1.25 1998/05/27 22:51:44 rousskov Exp $ + * $Id: HttpReply.cc,v 1.26 1998/05/28 05:14:01 wessels Exp $ * * DEBUG: section 58 HTTP Reply (Response) * AUTHOR: Alex Rousskov @@ -72,7 +72,7 @@ httpReplyCreate() return rep; } -void +static void httpReplyInit(HttpReply * rep) { assert(rep); @@ -84,7 +84,7 @@ httpReplyInit(HttpReply * rep) httpStatusLineInit(&rep->sline); } -void +static void httpReplyClean(HttpReply * rep) { assert(rep); diff --git a/src/client.cc b/src/client.cc index 1a8c03de57..f8b4440ca9 100644 --- a/src/client.cc +++ b/src/client.cc @@ -1,7 +1,7 @@ /* - * $Id: client.cc,v 1.69 1998/05/26 15:25:30 wessels Exp $ + * $Id: client.cc,v 1.70 1998/05/28 05:15:44 wessels Exp $ * * DEBUG: section 0 WWW Client * AUTHOR: Harvest Derived @@ -445,7 +445,7 @@ catch(int sig) fprintf(stderr, "Interrupted.\n"); } -void +static void pipe_handler(int sig) { fprintf(stderr, "SIGPIPE received.\n");