emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bug that needs fixing


From: Jason Rumney
Subject: Re: Bug that needs fixing
Date: Thu, 14 Jul 2005 09:20:23 +0100
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

Stefan Monnier wrote:

--- orig/lisp/net/ange-ftp.el
+++ mod/lisp/net/ange-ftp.el
@@ -729,7 +729,15 @@
          "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|"
          "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|"
          "^530 Please login with USER and PASS\\|" ; non kerberised vsFTPd
-         "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT")
+         "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT\\|"
+          ;; On Mac OS X we sometimes get things like:
+ ;; + ;; ftp> open ftp.nluug.nl
+          ;;     Trying 2001:610:1:80aa:192:87:102:36...
+          ;;     ftp: connect to address 2001:610:1:80aa:192:87:102:36: No 
route to host
+          ;;     Trying 192.87.102.36...
+          ;;     Connected to ftp.nluug.nl.
+          "^ftp: connect to address .*: No route to host")
Shouldn't all responses that do not start with a status code be ignored?

ie

"^[^1-9][^0-9][^0-9]"

or are there non-standard ftp servers that we have to parse status-code-less responses from?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]