diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-10 16:58:30 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-10 16:58:30 +0000 |
commit | c5ec364d23f9db99f51f51ca62565cfb1392d268 (patch) | |
tree | ee82621783c3fdf4563ed163940ea86c7c683bac /istream.c | |
parent | * doc/README.pre_form: update (diff) | |
download | w3m-c5ec364d23f9db99f51f51ca62565cfb1392d268.tar.gz w3m-c5ec364d23f9db99f51f51ca62565cfb1392d268.zip |
[w3m-dev 03631] display current form item
* form.c (form2str): rewrite
* istream.c (ssl_get_certificate): fix typo
* map.c (follow_map_panel): valign=top
(append_map_info): valign=top
(append_link_info): valign=top
(append_frame_info): <pre_int>
html_quote ssl_certificate
(page_info_panel): rewrite, html_quote
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | istream.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: istream.c,v 1.16 2002/12/24 17:20:47 ukai Exp $ */ +/* $Id: istream.c,v 1.17 2003/01/10 16:58:31 ukai Exp $ */ #include "fm.h" #include "myctype.h" #include "istream.h" @@ -578,7 +578,7 @@ ssl_get_certificate(SSL * ssl, char *hostname) Strcat_m_charp(s, " subject=", buf, NULL); xn = X509_get_issuer_name(x); if (X509_NAME_get_text_by_NID(xn, NID_commonName, buf, sizeof(buf)) == -1) - Strcat_charp(s, ": issuer=<unnown>"); + Strcat_charp(s, ": issuer=<unknown>"); else Strcat_m_charp(s, ": issuer=", buf, NULL); Strcat_charp(s, "\n\n"); |