From: Joseph Herlant Date: Sun, 25 Nov 2018 21:16:35 +0000 (-0800) Subject: CLEANUP: Fix a typo in the base64 subsystem X-Git-Tag: v1.9-dev9~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3b4e8e118f49f694327a1eebebdb48613bdb1346;p=thirdparty%2Fhaproxy.git CLEANUP: Fix a typo in the base64 subsystem Fixes a typo in the code comments of the base64 subsystem. --- diff --git a/src/base64.c b/src/base64.c index 594ab456ae..f7961c538c 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;