w3m

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

commit feea6d8119e05250353d8289b8e7c38fae18f3b7
parent dd8cd28e88295fa40ae7b2b218c1bf5ea0c0242e
Author: ukai <ukai>
Date:   Tue, 14 May 2002 15:31:49 +0000

[w3m-dev 03191] typo in file.c:extract_auth_val()?
* file.c (extract_auth_val): s/177/0177/
From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>

Diffstat:
MChangeLog | 5+++++
Mfile.c | 2+-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2002-05-15 Kiyokazu SUTO <suto@ks-and-ks.ne.jp> + + * [w3m-dev 03191] typo in file.c:extract_auth_val()? + * file.c (extract_auth_val): s/177/0177/ + 2002-05-15 Tsutomu OKADA <okada@furuno.co.jp> * [w3m-dev 03190] a tiny patch for configure diff --git a/file.c b/file.c @@ -965,7 +965,7 @@ extract_auth_val(char **q) qq++; goto end_token; default: - if (*qq <= 037 || *qq == 177) { + if (*qq <= 037 || *qq == 0177) { qq++; goto end_token; }