summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorcolm <colm@13f79535-47bb-0310-9956-ffa450edef68>2006-05-12 22:02:41 +0000
committercolm <colm@13f79535-47bb-0310-9956-ffa450edef68>2006-05-12 22:02:41 +0000
commit7baf0fc9f45852a912d7777e34f772e88a22a818 (patch)
treee606525239c4344c9aca02d8d382dc39f6eb98ac /misc
parent89d0e0aeb7038dec564bdca86586cd8d962da344 (diff)
downloadlibapr-util-7baf0fc9f45852a912d7777e34f772e88a22a818.tar.gz
Correct a comment regarding what is at the start of a datestring.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@405896 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r--misc/apr_date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/apr_date.c b/misc/apr_date.c
index c665c9bc..a9c71d65 100644
--- a/misc/apr_date.c
+++ b/misc/apr_date.c
@@ -334,7 +334,7 @@ APU_DECLARE(apr_time_t) apr_date_parse_rfc(const char *date)
if (!date)
return APR_DATE_BAD;
- /* Not all dates have text months at the beginning. */
+ /* Not all dates have text days at the beginning. */
if (!apr_isdigit(date[0]))
{
while (*date && apr_isspace(*date)) /* Find first non-whitespace char */