You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Doug MacEachern <do...@opengroup.org> on 1997/06/04 19:48:04 UTC

Re: support/log_server_status

Brian Behlendorf <br...@organic.com> wrote:

> 
> perl5 -c -w produces:
> 
>   Unquoted string "stdout" may clash with future reserved word at
>   /export/home/brian/cvswork/apache/support/log_server_status line 84.

patch below will take care of it.

-Doug

*** log_server_status~  Wed Jan  1 13:26:17 1997
--- log_server_status   Wed Jun  4 13:45:15 1997
***************
*** 81,87 ****
          connect(S,$them) || return "connect: $!";
          select(S); 
        $| = 1; 
!       select(stdout);
        return "";
  }
  
--- 81,87 ----
          connect(S,$them) || return "connect: $!";
          select(S); 
        $| = 1; 
!       select(STDOUT);
        return "";
  }