Mail Archives: cygwin/2001/11/06/07:32:00
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" <ptsekov AT syntrex DOT com>
To: <cygwin AT cygwin DOT com>
Cc: <tilps AT hotmail DOT com>
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" <ptsekov AT syntrex DOT com>
> > To: "Gareth Pearce" <tilps AT hotmail DOT com>
> > Cc: <cygwin AT cygwin DOT com>
> > 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/
- Raw text -