* net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV (tiny change)
authorWilliam Parsons <wbparsons@alum.mit.edu>
Fri, 16 Aug 2013 07:17:33 +0000 (00:17 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 16 Aug 2013 07:17:33 +0000 (00:17 -0700)
Fixes: debbugs:1972

lisp/ChangeLog
lisp/net/ange-ftp.el

index 9e77d51..5edb462 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
+
+       * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
+
 2013-08-16  Glenn Morris  <rgm@gnu.org>
 
        * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
index b8e279b..17c5326 100644 (file)
@@ -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)