You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/07/26 15:48:20 UTC

cvs commit: apache-2.0/src/modules/mpm/winnt service.c

rbb         00/07/26 06:48:19

  Modified:    src      CHANGES
               src/modules/mpm/winnt service.c
  Log:
  Fix an error in service.c, where we were returning APR_NOTFOUND and
  should have been return APR_ENOFILE
  Submitted by:	Gregory Nicholls <gn...@level8.com>
  Reviewed by:	Ryan Bloom
  
  Revision  Changes    Path
  1.180     +2 -0      apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.179
  retrieving revision 1.180
  diff -u -r1.179 -r1.180
  --- CHANGES	2000/07/26 01:55:59	1.179
  +++ CHANGES	2000/07/26 13:48:14	1.180
  @@ -1,4 +1,6 @@
   Changes with Apache 2.0a5
  +  *) Fix a couple of place in the Windows code where the wrong error
  +     code was being return. [Gregory Nicholls <gn...@level8.com>]
   
     *) Fix POOL_DEBUG (at least for prefork mpm). [Dean Gaudet]
   
  
  
  
  1.20      +1 -1      apache-2.0/src/modules/mpm/winnt/service.c
  
  Index: service.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/winnt/service.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- service.c	2000/07/25 00:58:22	1.19
  +++ service.c	2000/07/26 13:48:17	1.20
  @@ -657,7 +657,7 @@
   
       /* Take the given literal name if there is no service entry */
       display_name = ap_pstrdup(p, name);
  -    return APR_NOTFOUND;
  +    return APR_ENOFILE;
   }