diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2024-03-21 08:19:13 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2024-03-21 08:20:16 +0000 |
commit | 3d3885fb9f3b182a8173a424622a46ac3b9b4a34 (patch) | |
tree | ea31000ebe64e3d62146e0e9e46cac706d9acf3f /WWW/Library | |
parent | 1743c6cf472c71de8ecbcbcfed7966be34a11743 (diff) | |
download | lynx-snapshots-3d3885fb9f3b182a8173a424622a46ac3b9b4a34.tar.gz |
snapshot of project "lynx", label v2-9-0e
Diffstat (limited to 'WWW/Library')
-rw-r--r-- | WWW/Library/Implementation/HTFTP.c | 7 | ||||
-rw-r--r-- | WWW/Library/Implementation/SGML.c | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index decf5599..a08701cf 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.148 2023/01/05 09:17:15 tom Exp $ + * $LynxId: HTFTP.c,v 1.149 2024/03/21 07:51:10 tom Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -2189,7 +2189,10 @@ static void parse_cms_dir_entry(char *line, set_years_and_date(); } - /* Track down the date. */ + /* Track down the date using the ":" separating hours/minutes: + * mm/dd/yy hh:mm + * 01234567890123 + */ cpd = cps; if (((cps < end) && (cps = StrChr(cpd, ':')) != NULL) && diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c index c2566856..8415ebb9 100644 --- a/WWW/Library/Implementation/SGML.c +++ b/WWW/Library/Implementation/SGML.c @@ -1,5 +1,5 @@ /* - * $LynxId: SGML.c,v 1.186 2023/10/25 22:35:29 tom Exp $ + * $LynxId: SGML.c,v 1.187 2024/03/18 07:56:43 tom Exp $ * * General SGML Parser code SGML.c * ======================== @@ -5023,11 +5023,9 @@ unsigned char *TO_EUC(const unsigned char *jis, unsigned char *d; int to1B, to2B; int in_sjis = 0; - static int nje; int n8bits; int is_JIS; - nje++; n8bits = 0; s = jis; d = euc; |