You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2001/02/02 23:31:05 UTC

cvs commit: httpd-2.0/server scoreboard.c

stoddard    01/02/02 14:31:04

  Modified:    server   scoreboard.c
  Log:
  Ooops, that S and D are right next to each other.
  
  Revision  Changes    Path
  1.3       +2 -2      httpd-2.0/server/scoreboard.c
  
  Index: scoreboard.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/scoreboard.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- scoreboard.c	2001/02/02 21:32:32	1.2
  +++ scoreboard.c	2001/02/02 22:31:00	1.3
  @@ -95,7 +95,7 @@
    */
   apr_status_t ap_cleanup_shared_mem(void *d)
   {
  -#if APR_HAD_SHARED_MEMORY
  +#if APR_HAS_SHARED_MEMORY
       apr_shm_free(scoreboard_shm, ap_scoreboard_image);
       ap_scoreboard_image = NULL;
       apr_shm_destroy(scoreboard_shm);
  @@ -109,7 +109,7 @@
    */
   static void setup_shared(apr_pool_t *p)
   {
  -#if APR_HAD_SHARED_MEMORY
  +#if APR_HAS_SHARED_MEMORY
       char buf[512];
       char errmsg[120];
       const char *fname;