diff options
| author | Andreas Schwab | 2001-10-02 21:34:12 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2001-10-02 21:34:12 +0000 |
| commit | 7d685c849a03eedb3670098e5e0243c7f900a674 (patch) | |
| tree | d59cc16b7668a923073db81ae0ef4744a4d00485 | |
| parent | ae1a95818a80555fe9a38a8da0321e20e59aec5f (diff) | |
| download | emacs-7d685c849a03eedb3670098e5e0243c7f900a674.tar.gz emacs-7d685c849a03eedb3670098e5e0243c7f900a674.zip | |
(ange-ftp-skip-msgs): Add 227 and 228 for Long
and Extended Passive Mode, resp.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/ange-ftp.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b9d07da154..e3e7569a724 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-02 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long | ||
| 4 | and Extended Passive Mode, resp. | ||
| 5 | |||
| 1 | 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | These changes add support for Calendar-related items in the | 8 | These changes add support for Calendar-related items in the |
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index 12aaaa58fe5..b167879db1e 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el | |||
| @@ -678,7 +678,7 @@ parenthesized expressions in REGEXP for the components (in that order)." | |||
| 678 | "^Data connection \\|" | 678 | "^Data connection \\|" |
| 679 | "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" | 679 | "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" |
| 680 | "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" | 680 | "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" |
| 681 | "^227 .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") | 681 | "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") |
| 682 | "*Regular expression matching ftp messages that can be ignored." | 682 | "*Regular expression matching ftp messages that can be ignored." |
| 683 | :group 'ange-ftp | 683 | :group 'ange-ftp |
| 684 | :type 'regexp) | 684 | :type 'regexp) |