kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 9eb32e668e70c6af8a0301612520cf61e4e01591
parent bb09e8b2a9b748598207220ed5fd8c4ba4b12cd7
Author: Joris Vink <joris@coders.se>
Date:   Wed, 10 Jul 2013 15:04:01 +0200

use correct base64 alphabet (URL and Filename Safe Alphabet)

Diffstat:
src/utils.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils.c b/src/utils.c @@ -35,7 +35,7 @@ static struct { { NULL, 0 }, }; -static char b64table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; +static char b64table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"; void kore_debug_internal(char *file, int line, const char *fmt, ...)