CLEANUP: Fix a typo in the base64 subsystem

Fixes a typo in the code comments of the base64 subsystem.
This commit is contained in:
Joseph Herlant 2018-11-25 13:16:35 -08:00 committed by Willy Tarreau
parent 31019eebe9
commit 3b4e8e118f
1 changed files with 1 additions and 1 deletions

View 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;