summaryrefslogtreecommitdiff
path: root/encoding/apr_base64.c
diff options
context:
space:
mode:
Diffstat (limited to 'encoding/apr_base64.c')
-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);