Return-Path: Delivered-To: apmail-new-httpd-archive@apache.org Received: (qmail 5551 invoked by uid 500); 19 Jan 2001 22:01:19 -0000 Mailing-List: contact new-httpd-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list new-httpd@apache.org Received: (qmail 5528 invoked from network); 19 Jan 2001 22:01:18 -0000 Message-ID: <003801c08262$e49c5370$6401a8c0@apache> From: "Bill Stoddard" To: References: <20010119183835.80501.qmail@apache.org> Subject: Re: cvs commit: httpd-2.0/server connection.c Date: Fri, 19 Jan 2001 16:57:59 -0500 Organization: Apache Software Foundation MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Could you at least make sure your code compiles before commiting it? This breaks me... Bill > wrowe 01/01/19 10:38:35 > > Modified: include http_connection.h > server connection.c > Log: > By popular review > > Revision Changes Path > 1.30 +1 -1 httpd-2.0/include/http_connection.h > > Index: http_connection.h > =================================================================== > RCS file: /home/cvs/httpd-2.0/include/http_connection.h,v > retrieving revision 1.29 > retrieving revision 1.30 > diff -u -r1.29 -r1.30 > --- http_connection.h 2001/01/19 07:04:12 1.29 > +++ http_connection.h 2001/01/19 18:38:33 1.30 > @@ -98,7 +98,7 @@ > * @param c The connection on which the request is read > * @return OK or DECLINED > */ > -int ap_process_http_connection(conn_rec *); > +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *); > > AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); > > > > > 1.69 +1 -1 httpd-2.0/server/connection.c > > Index: connection.c > =================================================================== > RCS file: /home/cvs/httpd-2.0/server/connection.c,v > retrieving revision 1.68 > retrieving revision 1.69 > diff -u -r1.68 -r1.69 > --- connection.c 2001/01/19 07:04:28 1.68 > +++ connection.c 2001/01/19 18:38:34 1.69 > @@ -230,7 +230,7 @@ > return OK; > } > > -int ap_process_http_connection(conn_rec *c) > +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *c) > { > request_rec *r; > > > >