diff --git a/src/ChangeLog b/src/ChangeLog index 67d5a949..d382d2b5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-06-03 Karl Eichwalder <ke@suse.de> + + * ftp-ls.c (ftp_parse_ls): Fix typo. + 2001-05-27 Hrvoje Niksic <hniksic@arsdigita.com> * all: Update copyright information. diff --git a/src/ftp-ls.c b/src/ftp-ls.c index 19ce6a8b..d7e00ea7 100644 --- a/src/ftp-ls.c +++ b/src/ftp-ls.c @@ -785,7 +785,7 @@ ftp_parse_ls (const char *file, const enum stype system_type) return ftp_parse_unix_ls (file, TRUE); default: logprintf (LOG_NOTQUIET, _("\ -Usupported listing type, trying Unix listing parser.\n")); +Unsupported listing type, trying Unix listing parser.\n")); return ftp_parse_unix_ls (file, FALSE); } }