Discussion:
[PATCH] CLEANUP: Fix a typo in the base64 subsystem
Joseph Herlant
2018-11-25 21:16:35 UTC
Permalink
Fixes a typo in the code comments of the base64 subsystem.
---
src/base64.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/base64.c b/src/base64.c
index 594ab456..f7961c53 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -99,7 +99,7 @@ int base64dec(const char *in, size_t ilen, char *out, size_t olen) {
if (b < 0)
return -1;

- /* padding has to be continous */
+ /* padding has to be continuous */
if (pad && b != B64PADV)
return -1;
--
2.19.2
Loading...