CLEANUP: Fix a typo in the base64 subsystem
Fixes a typo in the code comments of the base64 subsystem.
This commit is contained in:
parent
31019eebe9
commit
3b4e8e118f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue