From owner-cvs-src@FreeBSD.ORG Tue May 8 20:04:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BD2E16A407 for ; Tue, 8 May 2007 20:04:10 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 0605013C457 for ; Tue, 8 May 2007 20:04:09 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 32388 invoked from network); 8 May 2007 20:04:10 -0000 Received: from 209-128-117-003.bayarea.net (HELO ?10.0.1.132?) (nate-mail@209.128.117.3) by root.org with ESMTPA; 8 May 2007 20:04:10 -0000 Message-ID: <4640D8AA.40101@root.org> Date: Tue, 08 May 2007 13:08:10 -0700 From: Nate Lawson User-Agent: Thunderbird 1.5.0.9 (X11/20070214) MIME-Version: 1.0 To: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= References: <200704222233.l3MMXUKH045452@repoman.freebsd.org> <86abwzio7t.fsf@dwp.des.no> <462CD3FD.6080300@root.org> <86tzurqp4d.fsf@dwp.des.no> <864pmn5lvd.fsf@dwp.des.no> In-Reply-To: <864pmn5lvd.fsf@dwp.des.no> X-Enigmail-Version: 0.94.2.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libfetch fetch.3 ftp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 May 2007 20:04:10 -0000 Dag-Erling Smørgrav wrote: > des@des.no (Dag-Erling Smørgrav) writes: >> Still on-going. I forgot to add BATCH=YES to the make command line >> and had to start over. I expect it will take several more days to run >> to completion. > > Here are the results. I haven't had time to look through them yet, > but judging from the parts I did look at, I don't expect any nasty > surprises. > > http://people.freebsd.org/~des/fetch.20070505.140302.log.bz2 > > DES Looking for cwd errors not related to a missing directory: $ grep -A1 '>>> CWD' fetch.20070505.140302.log | grep '<<<' | grep -v ' 250' | egrep -v 'No such'\|'does not exist' | wc -l 402 Except for "permission denied", all the other errors are this form: <<< 550 Failed to change directory. I manually reviewed those and they only occurred because the final dir did not exist. I'm certain of this since after the initial all-in-one CWD fails, some of the partial CWDs succeed but the final one does not exist. BTW, is there any reason to redo the "MODE S" and "TYPE I" commands after MDTM? Sample output below: <<< 220 ProFTPD 1.3.0a Server (BELNET FTPD Server) [193.190.198.20] >>> USER anonymous <<< 331 Anonymous login ok, send your complete email address as your password. >>> PASS des@varnish3.p.linpro.no <<< 230 Anonymous access granted, restrictions apply. >>> PWD <<< 257 "/" is current directory. >>> CWD mirror/ftp.gnome.org/sources/gail/1.18 <<< 250 CWD command successful >>> MODE S <<< 200 Mode set to S. >>> TYPE I <<< 200 Type set to I >>> SIZE gail-1.18.0.tar.bz2 <<< 213 610187 size: [610187] >>> MDTM gail-1.18.0.tar.bz2 <<< 213 20070312121247 last modified: [2007-03-12 12:12:47] >>> MODE S <<< 200 Mode set to S. >>> TYPE I <<< 200 Type set to I setting passive mode >>> PASV <<< 227 Entering Passive Mode (193,190,198,20,206,114). opening data connection initiating transfer >>> RETR gail-1.18.0.tar.bz2 -- Nate