You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/04/21 07:27:01 UTC

cvs commit: apache-2.0/src/lib/apr/misc/unix canonerr.c

bjh         00/04/20 22:27:01

  Modified:    src/lib/apr/misc/unix canonerr.c
  Log:
  misc/unix is used on OS/2 as well, prevent unix ap_canonical_error() from
  conflicting with OS/2 version.
  
  Revision  Changes    Path
  1.2       +4 -0      apache-2.0/src/lib/apr/misc/unix/canonerr.c
  
  Index: canonerr.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/unix/canonerr.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- canonerr.c	2000/04/20 16:19:04	1.1
  +++ canonerr.c	2000/04/21 05:27:01	1.2
  @@ -54,7 +54,11 @@
   
   #include "misc.h"
   
  +#ifndef OS2
  +
   int ap_canonical_error(ap_status_t errcode)
   {
       return errcode;
   }
  +
  +#endif