You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Orton <jo...@redhat.com> on 2005/08/24 20:59:36 UTC

Re: svn commit: r239710 - in /httpd/httpd/trunk: include/ap_listen.h server/listen.c

On Wed, Aug 24, 2005 at 04:51:24PM -0000, colm@apache.org wrote:
> Author: colm
> Date: Wed Aug 24 09:51:20 2005
> New Revision: 239710
> 
> URL: http://svn.apache.org/viewcvs?rev=239710&view=rev
...

> +/**
> + * Loop through the global ap_listen_rec list and close each of the sockets.
> + */
> +AP_DECLARE_NONSTD(void) ap_close_listeners();

should be (void)

include/ap_listen.h:83: warning: function declaration isn't a prototype

> +
> +AP_DECLARE_NONSTD(void) ap_close_listeners() {

style nit - opening brace should be on column 1.

Otherwise looks good :)

joe