w3m

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

commit 64f0ffc09580b475355edcecd63f369fbaeb9fe1
parent e0e037d96afc692cb31e838c9c4737766952f9b0
Author: htrb <htrb>
Date:   Sat, 24 Jul 2010 04:30:40 +0000

suppress compile warnings.

Diffstat:
Mfile.c | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/file.c b/file.c @@ -1216,7 +1216,7 @@ AuthBasicCred(struct http_auth *ha, Str uname, Str pw, ParsedURL *pu, */ static Str -digest_hex(char *p) +digest_hex(unsigned char *p) { char *h = "0123456789abcdef"; Str tmp = Strnew_size(MD5_DIGEST_LENGTH * 2 + 1); @@ -1239,7 +1239,7 @@ AuthDigestCred(struct http_auth *ha, Str uname, Str pw, ParsedURL *pu, HRequest *hr, FormList *request) { Str tmp, a1buf, a2buf, rd, s; - char md5[MD5_DIGEST_LENGTH + 1]; + unsigned char md5[MD5_DIGEST_LENGTH + 1]; Str uri = HTTPrequestURI(pu, hr); char nc[] = "00000001"; @@ -1251,7 +1251,7 @@ AuthDigestCred(struct http_auth *ha, Str uname, Str pw, ParsedURL *pu, static union { int r[4]; - char s[sizeof(int) * 4]; + unsigned char s[sizeof(int) * 4]; } cnonce_seed; int qop_i = QOP_NONE; @@ -5264,6 +5264,7 @@ textlist_feed() return NULL; } +static int ex_efct(int ex) { int effect = 0;