diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-24 17:20:45 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-24 17:20:45 +0000 |
commit | 4ca69fff36ed4c9013f8ba74eeb47fea71b7121b (patch) | |
tree | f20970c6c6c73feb448ebdcd663792a4e8d49f96 /istream.c | |
parent | mimehead.c (decodeWord): don't use toupper() (requires ctype.h) (diff) | |
download | w3m-4ca69fff36ed4c9013f8ba74eeb47fea71b7121b.tar.gz w3m-4ca69fff36ed4c9013f8ba74eeb47fea71b7121b.zip |
[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>
Diffstat (limited to '')
-rw-r--r-- | istream.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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); } |