w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit 39a5c2120239059b73a4b99addee0aa18febe4e8
parent 33c241b328b3504f6160ae11caa5e37d1916a332
Author: ukai <ukai>
Date:   Thu,  7 Feb 2002 14:02:12 +0000

fix indent

Diffstat:
Mistream.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/istream.c b/istream.c @@ -461,7 +461,7 @@ ssl_check_cert_ident(X509 * x, char *hostname) if (X509_NAME_get_text_by_NID(xn, NID_commonName, buf, sizeof(buf)) == -1) ret = Strnew_charp("Unable to get common name from peer cert"); - else if (! ssl_match_cert_ident(buf, strlen(buf), hostname)) + else if (!ssl_match_cert_ident(buf, strlen(buf), hostname)) ret = Sprintf("Bad cert ident %s from %s", buf, hostname); else match_ident = TRUE;