]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: Fix a typo in the base64 subsystem
authorJoseph Herlant <aerostitch@debian.org>
Sun, 25 Nov 2018 21:16:35 +0000 (13:16 -0800)
committerWilly Tarreau <w@1wt.eu>
Sun, 2 Dec 2018 17:42:08 +0000 (18:42 +0100)
Fixes a typo in the code comments of the base64 subsystem.

src/base64.c

index 594ab456aef0d6d92997cbf5ee72e5855aa62231..f7961c538cb3f8e65b21f7b90a8cba24178f6f8f 100644 (file)
@@ -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;