From 0e1a0f88e51a505514509fb56d22414d70b0f699 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Mon, 17 Sep 2018 19:18:37 +0800 Subject: [PATCH] Fix #67 a y chars will invalid error --- ext/rucaptcha/rucaptcha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/rucaptcha/rucaptcha.c b/ext/rucaptcha/rucaptcha.c index 402985c..973a285 100644 --- a/ext/rucaptcha/rucaptcha.c +++ b/ext/rucaptcha/rucaptcha.c @@ -151,7 +151,7 @@ static void filter(unsigned char im[70*200]) { memmove(im,om,sizeof(om)); } -static const char *letters="abcdyfhhijklmnopqrstuvwxyz"; +static const char *letters="abcdafahijklmnopqrstuvwxyz"; void captcha(unsigned char im[70*200], unsigned char l[8], int length, int i_line, int i_filter) { unsigned char swr[200];