[w3m-dev 03595] tolower, toupper
* Str.c (Strlower): TOLOWER (Strupper): TOUPPER * backend.c: delete ctype.h * etc.c (gethtmlcmd): TOLOWER * file.c (readHeader): TOLOWER (checkOverWrite): TOLOWER (guess_charset): TOLOWER * ftp.c: delete ctype.h * indep.c (strcasecmp): TOLOWER (strncasecmp): TOLOWER (strcasematch): TOLOWER * istream.c: include myctype.h (ssl_get_certificate): TOLOWER * mailcap.c (mailcapMatch): TOLOWER * main.c (_quitfm): TOLOWER * menu.c (accesskey_menu): TOLOWER * mimehead.c: include myctype.h (decodeWord): TOUPPER * mktable.c: delete ctype.h, include myctype.h (main): IS_SPACE * myctype.h: delete ctype.h (TOLOWER): added (TOUPPER): added * parsetagx.c (parse_tag): TOLOWER * rc.c (str_to_bool): TOLOWER (str_to_color): TOLOWER * regex.c: delete ctype.h, include myctype.h (TOLOWER): added (TOUPPER): added (regmatch1): TOLOWER (matchWhich): TOLOWER, TOUPPER From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
/* $Id: istream.c,v 1.15 2002/09/28 16:30:07 ukai Exp $ */
|
||||
/* $Id: istream.c,v 1.16 2002/12/24 17:20:47 ukai Exp $ */
|
||||
#include "fm.h"
|
||||
#include "myctype.h"
|
||||
#include "istream.h"
|
||||
#include <signal.h>
|
||||
#ifdef USE_SSL
|
||||
@@ -494,7 +495,7 @@ ssl_get_certificate(SSL * ssl, char *hostname)
|
||||
emsg = Strnew_charp("No SSL peer certificate: accept? (y/n)");
|
||||
ans = inputAnswer(emsg->ptr);
|
||||
}
|
||||
if (ans && tolower(*ans) == 'y')
|
||||
if (ans && TOLOWER(*ans) == 'y')
|
||||
amsg = Strnew_charp
|
||||
("Accept SSL session without any peer certificate");
|
||||
else {
|
||||
@@ -527,7 +528,7 @@ ssl_get_certificate(SSL * ssl, char *hostname)
|
||||
emsg = Sprintf("%s: accept? (y/n)", em);
|
||||
ans = inputAnswer(emsg->ptr);
|
||||
}
|
||||
if (ans && tolower(*ans) == 'y') {
|
||||
if (ans && TOLOWER(*ans) == 'y') {
|
||||
amsg = Sprintf("Accept unsecure SSL session: "
|
||||
"unverified: %s", em);
|
||||
}
|
||||
@@ -553,7 +554,7 @@ ssl_get_certificate(SSL * ssl, char *hostname)
|
||||
Strcat_charp(ep, ": accept? (y/n)");
|
||||
ans = inputAnswer(ep->ptr);
|
||||
}
|
||||
if (ans && tolower(*ans) == 'y') {
|
||||
if (ans && TOLOWER(*ans) == 'y') {
|
||||
amsg = Strnew_charp("Accept unsecure SSL session:");
|
||||
Strcat(amsg, emsg);
|
||||
}
|
||||
|
Reference in New Issue
Block a user