diff options
author | rooneg <rooneg@13f79535-47bb-0310-9956-ffa450edef68> | 2005-12-13 21:00:34 +0000 |
---|---|---|
committer | rooneg <rooneg@13f79535-47bb-0310-9956-ffa450edef68> | 2005-12-13 21:00:34 +0000 |
commit | 3d106d691411f0e14b557e8250c80da2fc0435fd (patch) | |
tree | a29ff2453a466b266dd9b82d439a36888672aae0 /include/apr_errno.h | |
parent | 7357887c77efff73ec79a594b7f6236df470949d (diff) | |
download | libapr-3d106d691411f0e14b557e8250c80da2fc0435fd.tar.gz |
Clean up the documentation surrounding the APR_INCOMPLETE status code,
* include/apr_file_info.h
(apr_stat, apr_dir_read): Note that APR_INCOMPLETE can be returned, and
that if it is you can use the finfo->valid bitfield to determine which
parts of the finfo are filled in. Also break some overly long lines.
* include/apr_errno.h
(APR_STATUS_IS_INCOMPLETE): Update docs since this is no longer specific
to the xlate code.
* CHANGES: Note change.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@356615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_errno.h')
-rw-r--r-- | include/apr_errno.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_errno.h b/include/apr_errno.h index 77b383a8c..9f4e569e9 100644 --- a/include/apr_errno.h +++ b/include/apr_errno.h @@ -467,8 +467,8 @@ APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf, */ #define APR_STATUS_IS_TIMEUP(s) ((s) == APR_TIMEUP) /** - * The character conversion stopped because of an incomplete character or - * shift sequence at the end of the input buffer. + * The operation was incomplete although some processing was performed + * and the results are partially valid. * @warning * always use this test, as platform-specific variances may meet this * more than one error code |