You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2005/05/25 07:54:58 UTC

svn commit: r178382 - /apr/apr-util/trunk/include/apr_uri.h

Author: pquerna
Date: Tue May 24 22:54:58 2005
New Revision: 178382

URL: http://svn.apache.org/viewcvs?rev=178382&view=rev
Log:
- fix doc strings. the apr_uri functions never return an HTTP Status code, but rather have always used apr_status_t return codes.  

Modified:
    apr/apr-util/trunk/include/apr_uri.h

Modified: apr/apr-util/trunk/include/apr_uri.h
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/include/apr_uri.h?rev=178382&r1=178381&r2=178382&view=diff
==============================================================================
--- apr/apr-util/trunk/include/apr_uri.h (original)
+++ apr/apr-util/trunk/include/apr_uri.h Tue May 24 22:54:58 2005
@@ -154,7 +154,7 @@
  * @param p The pool to allocate out of
  * @param uri The uri to parse
  * @param uptr The apr_uri_t to fill out
- * @return An HTTP status code
+ * @return 0 for success or error code
  */
 APU_DECLARE(int) apr_uri_parse(apr_pool_t *p, const char *uri, 
                                apr_uri_t *uptr);
@@ -164,7 +164,7 @@
  * @param p The pool to allocate out of
  * @param hostinfo The hostinfo string to parse
  * @param uptr The apr_uri_t to fill out
- * @return An HTTP status code
+ * @return 0 for success or error code
  */
 APU_DECLARE(int) apr_uri_parse_hostinfo(apr_pool_t *p, 
                                         const char *hostinfo,