summaryrefslogtreecommitdiff
path: root/encoding
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2018-06-11 22:26:23 +0000
committerGraham Leggett <minfrin@apache.org>2018-06-11 22:26:23 +0000
commit4b83502267bb6442b45d1bb7dc075c78f1d7de19 (patch)
tree079f120a078c4918fc6aec88f34b9ba12d5ab118 /encoding
parentabe62997e1c71e46b00ae83bd03ce07651f818cd (diff)
downloadapr-4b83502267bb6442b45d1bb7dc075c78f1d7de19.tar.gz
Correct spelling.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1833361 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'encoding')
-rw-r--r--encoding/apr_base64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/encoding/apr_base64.c b/encoding/apr_base64.c
index b07aede01..e4fb90b59 100644
--- a/encoding/apr_base64.c
+++ b/encoding/apr_base64.c
@@ -170,7 +170,7 @@ APR_DECLARE(int) apr_base64_decode_binary(unsigned char *bufplain,
nprbytes -= 4;
}
- /* Note: (nprbytes == 1) would be an error, so just ingore that case */
+ /* Note: (nprbytes == 1) would be an error, so just ignore that case */
if (nprbytes > 1) {
*(bufout++) =
(unsigned char) (pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4);