summaryrefslogtreecommitdiff
path: root/include/httpd.h
diff options
context:
space:
mode:
authorMike Rumph <mrumph@apache.org>2020-02-13 18:15:57 +0000
committerMike Rumph <mrumph@apache.org>2020-02-13 18:15:57 +0000
commit85760859cac5870ffae86c5c02cfde6db696b140 (patch)
treecde5286acd23f1a007bdc03a37629f4196d6e8d1 /include/httpd.h
parentb6dd2f55dc8735ec09ed0830ba7ec78dd99cde7f (diff)
downloadhttpd-85760859cac5870ffae86c5c02cfde6db696b140.tar.gz
Fix spelling errors found by codespell. [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1873985 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r--include/httpd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/httpd.h b/include/httpd.h
index ee2acc25d9..0fa5341f60 100644
--- a/include/httpd.h
+++ b/include/httpd.h
@@ -313,7 +313,7 @@ extern "C" {
#define AP_MAX_REG_MATCH 10
/**
- * APR_HAS_LARGE_FILES introduces the problem of spliting sendfile into
+ * APR_HAS_LARGE_FILES introduces the problem of splitting sendfile into
* multiple buckets, no greater than MAX(apr_size_t), and more granular
* than that in case the brigade code/filters attempt to read it directly.
* ### 16mb is an invention, no idea if it is reasonable.
@@ -682,9 +682,9 @@ struct ap_method_list_t {
#if !APR_CHARSET_EBCDIC
/** linefeed */
#define LF 10
-/** carrige return */
+/** carriage return */
#define CR 13
-/** carrige return /Line Feed Combo */
+/** carriage return /Line Feed Combo */
#define CRLF "\015\012"
#else /* APR_CHARSET_EBCDIC */
/* For platforms using the EBCDIC charset, the transition ASCII->EBCDIC is done
@@ -735,7 +735,7 @@ struct ap_method_list_t {
/*
* Things which may vary per file-lookup WITHIN a request ---
* e.g., state of MIME config. Basically, the name of an object, info
- * about the object, and any other info we may ahve which may need to
+ * about the object, and any other info we may have which may need to
* change as we go poking around looking for it (e.g., overridden by
* .htaccess files).
*
@@ -2022,7 +2022,7 @@ AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded);
* Unlike ap_pbase64decode(), this function allows encoded NULLs in the input to
* be retained by the caller, by inspecting the len argument after the call
* instead of using strlen(). A NULL terminator is still appended to the buffer
- * to faciliate string use (it is not included in len).
+ * to facilitate string use (it is not included in len).
*
* @param p The pool to allocate from
* @param encoded The encoded string