From 29f4e726c3f5f265ca2b5be03f389593af158a9c Mon Sep 17 00:00:00 2001 From: minfrin Date: Mon, 11 Jun 2018 22:26:23 +0000 Subject: Correct spelling. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1833361 13f79535-47bb-0310-9956-ffa450edef68 --- encoding/apr_base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'encoding') 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); -- cgit v1.2.1