From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: Re: Bug that needs fixing Date: Thu, 14 Jul 2005 09:20:23 +0100 Message-ID: <42D62047.3010903@gnu.org> References: <87mzpcvpv3.fsf@gmx.de> <87u0ixkie5.fsf-monnier+emacs@gnu.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1121332486 20736 80.91.229.2 (14 Jul 2005 09:14:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 14 Jul 2005 09:14:46 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 14 11:14:42 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dsznc-0002Dk-Tv for ged-emacs-devel@m.gmane.org; Thu, 14 Jul 2005 11:14:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DszGs-0008Er-Tm for ged-emacs-devel@m.gmane.org; Thu, 14 Jul 2005 04:40:42 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dsz33-0002f2-5o for emacs-devel@gnu.org; Thu, 14 Jul 2005 04:26:26 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dsz2x-0002eT-3s for emacs-devel@gnu.org; Thu, 14 Jul 2005 04:26:21 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dsz0u-00028z-Ua for emacs-devel@gnu.org; Thu, 14 Jul 2005 04:24:13 -0400 Original-Received: from [217.207.198.106] (helo=exchange.integrasp.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dsz2z-000642-Lp for emacs-devel@gnu.org; Thu, 14 Jul 2005 04:26:21 -0400 Original-Received: from ASSP-nospam (localhost [127.0.0.1]) by exchange.integrasp.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id 37Q0SVAN; Thu, 14 Jul 2005 09:15:34 +0100 Original-Received: from 10.10.5.77 ([10.10.5.77] helo=[10.10.5.77]) by ASSP-nospam ; 14 Jul 05 08:15:34 -0000 User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en Original-To: Stefan Monnier In-Reply-To: <87u0ixkie5.fsf-monnier+emacs@gnu.org> X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:40882 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40882 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?