diff options
-rw-r--r-- | mbbsd/register.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mbbsd/register.c b/mbbsd/register.c index 3a6a138f..957e4a2c 100644 --- a/mbbsd/register.c +++ b/mbbsd/register.c @@ -379,12 +379,14 @@ delregcodefile(void) int gen_captcha(char *buf, int szbuf, char *fpath) { - const char *alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + // do not use: GQV + const char *alphabet = "ABCDEFHIJKLMNOPRSTUWXYZ"; int calphas = strlen(alphabet); char cmd[PATHLEN], opts[PATHLEN]; int i, coptSpace, coptFont; static const char *optSpace[] = { - "-S", "-s", "-k", "-W", "-o", + "-S", "-s", "-k", "-W", + // "-o", NULL }; static const char *optFont[] = { |