From: William Parsons Date: Fri, 16 Aug 2013 07:17:33 +0000 (-0700) Subject: * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV (tiny change) X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1686^2~207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4bbb43819fb6025ca15ec5eab7740dff38283d62;p=emacs.git * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV (tiny change) Fixes: debbugs:1972 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9e77d51c815..5edb462adb5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-08-16 William Parsons (tiny change) + + * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972) + 2013-08-16 Glenn Morris * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd): diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index b8e279be91b..17c532688ac 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -723,7 +723,7 @@ parenthesized expressions in REGEXP for the components (in that order)." "^504 Unknown security mechanism\\|" "^530 Please login with USER and PASS\\|" ; non kerberized vsFTPd "^534 Kerberos Authentication not enabled\\|" - "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") + "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT\\|^500 .*EPSV") "Regular expression matching FTP messages that can be ignored." :group 'ange-ftp :type 'regexp)