Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com X-Originating-IP: [198.142.166.102] From: "Gareth Pearce" To: References: <3BE7C26E DOT 8BC55189 AT syntrex DOT com> <3BE7CC65 DOT B0D03C83 AT syntrex DOT com> Subject: Re: Setup use on win2k - a me too ... Date: Tue, 6 Nov 2001 23:02:28 +1100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: X-OriginalArrivalTime: 06 Nov 2001 12:02:18.0743 (UTC) FILETIME=[E229E070:01C166BA] Due to the fact that recompiling to latest cvs appears to have fixed the problem misteriously ... already ... I was not supprised that adding those lines produced ... site: ftp://planetmirror.com/pub/sourceware/cygwin get_url_to_string ftp://planetmirror.com/pub/sourceware/cygwin/setup.ini ftp > 220 PlanetMirror FTP server ready. FTP command is USER anonymous ftp > 331 Anonymous login ok, send your complete email address as your password. ftp > 230- ftp > Welcome to the FTP archives at planetmirror.com. You ftp > can also access these via a web interface reachable from: ftp > ... notice that the log records the 220 before the USER... the log from the time where it consumed memory evilly, it recorded x as the first thing after the get_url_to_string... so I would guess that the bug stems previous to that... On a completely different topic, since there is no downloads allowed from redhat for apps, would it make sense to delay 'announce' messages until at least the most frequent mirrors have updated? - I almost went and posted asking where inetutils update was, until I realised this was the probably reason and I shouldnt waste anyones time... Regards, Gareth Pearce ----- Original Message ----- From: "Pavel Tsekov" To: Cc: Sent: Tuesday, November 06, 2001 10:41 PM Subject: Re: Setup use on win2k - a me too ... > Gareth Pearce wrote: > > > > ----- Original Message ----- > > From: "Pavel Tsekov" > > To: "Gareth Pearce" > > Cc: > > Sent: Tuesday, November 06, 2001 9:58 PM > > Subject: Re: Setup use on win2k - a me too ... > > > > > Gareth Pearce wrote: > > > > > > > > - I clicked the cancel button and waited while memory got cleaned up ... > > for > > > > this case. > > > > > > > > setup.log.full - is huge 44megs ... > > > > as above till net: Direct - then > > > > get_url_to_string http://sources.redhat.com/cygwin/mirrors.lst > > > > site: ftp://planetmirror.com/pub/sourceware/cygwin > > > > get_url_to_string ftp://planetmirror.com/pub/sourceware/cygwin/setup.ini > > > > ftp > x > > > > ftp > x > > > > ftp > x > > > > repeat the ftp line semi-ad-infinitum. > > > > > > > > > > What does the 'x' after 'ftp >' replace ? USER ? > > > > > thats a direct copy from the setup.log.full - I wasnt masking something - if > > thats what you mean. > > Yes that was what I mean but I saw I dont need to ask that question > some ticks after I posted it :) > > Can you build a new setup.exe with a simple change ? > > find this lines in nio-ftp.cc > > auth_retry: > if (net_ftp_user) > c->printf ("USER %s\r\n", net_ftp_user); > else > c->printf ("USER anonymous\r\n"); > > and change them like this > > auth_retry: > if (net_ftp_user) { > log (LOG_BABBLE, "FTP command is USER %s", net_ftp_user); > c->printf ("USER %s\r\n", net_ftp_user); > } > else { > log (LOG_BABBLE, "FTP command is USER anonymous"); > c->printf ("USER anonymous\r\n"); > } > > > Compile and see what is in setup.log.full > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/