You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@apache.org on 2001/03/05 01:15:47 UTC

cvs commit: apr/dso/beos dso.c

dreid       01/03/04 16:15:47

  Modified:    dso/beos dso.c
  Log:
  Not quite sure how this went unnoticed for so long...
  
  Revision  Changes    Path
  1.17      +1 -1      apr/dso/beos/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apr/dso/beos/dso.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- dso.c	2001/02/16 04:15:32	1.16
  +++ dso.c	2001/03/05 00:15:46	1.17
  @@ -108,7 +108,7 @@
   
   APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer, apr_size_t buflen)
   {
  -    strncpy(strerror(errno), buffer, buflen);
  +    strncpy(buffer, strerror(errno), buflen);
       return buffer;
   }