commit | 3b4e8e118f49f694327a1eebebdb48613bdb1346 | [log] [tgz] |
---|---|---|
author | Joseph Herlant <aerostitch@debian.org> | Sun Nov 25 13:16:35 2018 -0800 |
committer | Willy Tarreau <w@1wt.eu> | Sun Dec 02 18:42:08 2018 +0100 |
tree | bdcf4b34e6f45554caad1d4f2fb35cc569006473 | |
parent | 31019eebe9ff289d1ab17fca35fe500f2f29fd68 [diff] |
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 594ab45..f7961c5 100644 --- a/src/base64.c +++ b/src/base64.c
@@ -99,7 +99,7 @@ if (b < 0) return -1; - /* padding has to be continous */ + /* padding has to be continuous */ if (pad && b != B64PADV) return -1;