You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2002/10/13 06:09:47 UTC

cvs commit: apr/file_io/os2 filedup.c

wrowe       2002/10/12 21:09:47

  Modified:    file_io/os2 filedup.c
  Log:
    Missed one transform
  
  Revision  Changes    Path
  1.29      +1 -1      apr/file_io/os2/filedup.c
  
  Index: filedup.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/os2/filedup.c,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- filedup.c	10 Jul 2002 09:44:55 -0000	1.28
  +++ filedup.c	13 Oct 2002 04:09:47 -0000	1.29
  @@ -80,7 +80,7 @@
       rv = DosDupHandle(old_file->filedes, &dup_file->filedes);
   
       if (rv) {
  -        return APR_OS2_STATUS(rv);
  +        return APR_FROM_OS_ERROR(rv);
       }
   
       dup_file->fname = apr_pstrdup(dup_file->pool, old_file->fname);