| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Message-ID: | <3BE7CC65.B0D03C83@syntrex.com> |
| Date: | Tue, 06 Nov 2001 12:41:25 +0100 |
| From: | Pavel Tsekov <ptsekov AT syntrex DOT com> |
| X-Mailer: | Mozilla 4.76 [en] (X11; U; Linux 2.4.2-2 i686) |
| X-Accept-Language: | en |
| MIME-Version: | 1.0 |
| To: | cygwin AT cygwin DOT com |
| CC: | tilps AT hotmail DOT com |
| Subject: | Re: Setup use on win2k - a me too ... |
| References: | <OE59HpQHyD1C0Ug8cpF00003953 AT hotmail DOT com> <3BE7C26E DOT 8BC55189 AT syntrex DOT com> <OE42gLSMARBLBpRwAOk0000cf69 AT hotmail DOT com> |
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/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |