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 2003/12/29 21:55:09 UTC

cvs commit: apr/include apr_file_io.h apr_network_io.h

ianh        2003/12/29 12:55:08

  Modified:    include  apr_file_io.h apr_network_io.h
  Log:
  silence 2 doxygen warnings
  
  submitted by: sander temme <sander at temmet dot net>
  
  Revision  Changes    Path
  1.147     +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.146
  retrieving revision 1.147
  diff -u -r1.146 -r1.147
  --- apr_file_io.h	3 Sep 2003 18:37:38 -0000	1.146
  +++ apr_file_io.h	29 Dec 2003 20:55:08 -0000	1.147
  @@ -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 '\\0'-terminated if any characters are stored.
    */
   APR_DECLARE(apr_status_t) apr_file_gets(char *str, int len, apr_file_t *thefile);
   
  
  
  
  1.152     +4 -0      apr/include/apr_network_io.h
  
  Index: apr_network_io.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_network_io.h,v
  retrieving revision 1.151
  retrieving revision 1.152
  diff -u -r1.151 -r1.152
  --- apr_network_io.h	5 Dec 2003 01:02:31 -0000	1.151
  +++ apr_network_io.h	29 Dec 2003 20:55:08 -0000	1.152
  @@ -181,6 +181,10 @@
   #define APR_UNSPEC   0
   #endif
   #if APR_HAVE_IPV6
  +/** @def APR_INET6
  +* IPv6 Address Family. Not all platforms may have this defined.
  +*/
  +
   #define APR_INET6    AF_INET6
   #endif