You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ia...@apache.org on 2004/01/05 02:23:48 UTC

cvs commit: apr/include apr_file_io.h

ianh        2004/01/04 17:23:48

  Modified:    include  apr_file_io.h
  Log:
  make it say NUL-terminated instead of \0 terminated so both developers
  and doxygen can be happy!
  
  Revision  Changes    Path
  1.148     +1 -1      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.147
  retrieving revision 1.148
  diff -u -r1.147 -r1.148
  --- apr_file_io.h	29 Dec 2003 20:55:08 -0000	1.147
  +++ apr_file_io.h	5 Jan 2004 01:23:48 -0000	1.148
  @@ -455,7 +455,7 @@
    * @param str The buffer to store the string in. 
    * @param len The length of the string
    * @param thefile The file descriptor to read from
  - * @remark The buffer will be '\\0'-terminated if any characters are stored.
  + * @remark The buffer will be NUL-terminated if any characters are stored.
    */
   APR_DECLARE(apr_status_t) apr_file_gets(char *str, int len, apr_file_t *thefile);