You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/09/22 20:59:07 UTC

cvs commit: apr/include apr_file_io.h

jorton      2004/09/22 11:59:07

  Modified:    include  Tag: APR_0_9_BRANCH apr_file_io.h
  Log:
  Comment tweak as per HEAD.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.144.2.3 +4 -4      apr/include/apr_file_io.h
  
  Index: apr_file_io.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_file_io.h,v
  retrieving revision 1.144.2.2
  retrieving revision 1.144.2.3
  diff -d -w -u -r1.144.2.2 -r1.144.2.3
  --- apr_file_io.h	24 Mar 2004 20:09:18 -0000	1.144.2.2
  +++ apr_file_io.h	22 Sep 2004 18:59:07 -0000	1.144.2.3
  @@ -145,7 +145,7 @@
   
   /**
    * Open the specified file.
  - * @param new_file The opened file descriptor.
  + * @param newf The opened file descriptor.
    * @param fname The full path to the file (using / on all systems)
    * @param flag Or'ed value of:
    * <PRE>
  @@ -173,14 +173,14 @@
    *                               apr_sendfile does not check this flag.
    * </PRE>
    * @param perm Access permissions for file.
  - * @param cont The pool to use.
  + * @param pool The pool to use.
    * @remark If perm is APR_OS_DEFAULT and the file is being created, appropriate 
    *      default permissions will be used.  *arg1 must point to a valid file_t, 
    *      or NULL (in which case it will be allocated)
    */
  -APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **new_file, const char *fname,
  +APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **newf, const char *fname,
                                      apr_int32_t flag, apr_fileperms_t perm,
  -                                   apr_pool_t *cont);
  +                                   apr_pool_t *pool);
   
   /**
    * Close the specified file.