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

cvs commit: apache-2.0/src/lib/apr/dso/beos dso.c

dreid       00/06/01 07:27:06

  Modified:    src/lib/apr/dso/beos dso.c
  Log:
  Add an ap_dso_error function.
  
  Revision  Changes    Path
  1.6       +5 -0      apache-2.0/src/lib/apr/dso/beos/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/dso/beos/dso.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- dso.c	2000/06/01 01:01:13	1.5
  +++ dso.c	2000/06/01 14:27:05	1.6
  @@ -99,4 +99,9 @@
       return APR_SUCCESS;
   }
   
  +char *ap_dso_error(char *buf, int bufsize, ap_status_t errcode)
  +{
  +    return strerror(errno);
  +}
  +
   #endif