diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2010-05-06 00:55:33 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2010-05-06 00:55:33 -0400 |
commit | 310e655e2b1279d6c088497214e78e99e3fd6f74 (patch) | |
tree | c37b8f9820641bb339557f96c48ad086694bbf41 /WWW | |
parent | 903885454167e86ce4cb967f901cbaf741f21501 (diff) | |
download | lynx-snapshots-310e655e2b1279d6c088497214e78e99e3fd6f74.tar.gz |
snapshot of project "lynx", label v2-8-8dev_3d
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTFTP.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index 7b98ea0d..e88d1433 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.92 2010/04/29 22:50:32 tom Exp $ + * $LynxId: HTFTP.c,v 1.93 2010/05/05 09:27:41 tom Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -3399,7 +3399,7 @@ static int setup_connection(const char *name, /* * EPSV bla (|||port|) */ - for (p = response_text; *p && !isspace(*p); p++) { + for (p = response_text; *p && !isspace(UCH(*p)); p++) { ; /* null body */ } for ( /*nothing */ ; |