Help: ANSI C++ forbids data member `url' with same name

2003-12-12 Thread wei ye
/* Original URL */ /* ... ... */ }; int main() { } $ g++ test.cc test.cc:3: ANSI C++ forbids data member `url' with same name as enclosing class $ = Wei Ye __ Do you Yahoo!? New Yahoo! Photos - easier uploading and sharing. http://photos.yahoo.com/

Re: trailing '/' of include-directories removed bug

2003-06-13 Thread wei ye
2003/06/13 20:24:16 > @@ -753,7 +753,6 @@ > >if (*val) > { > - /* Strip the trailing slashes from directories. */ >char **t, **seps; > >seps = sepstring (val); > @@ -761,10 +760,10 @@ > { > int len = strlen (*t); > /* Sk

Re: trailing '/' of include-directories removed bug

2003-06-12 Thread wei ye
OTECTED]> wrote: > oh, i understand your problem. your request seems reasonable. i was > trying to see if anyone had an idea why it seemed to be more of a > "feature" than a "bug". > > On Thu, 12 Jun 2003, wei ye wrote: > > > > > Please take

Re: trailing '/' of include-directories removed bug

2003-06-12 Thread wei ye
> the retrieval. Any other directories will simply be ignored. The > directories are absolute paths. So, if you wish to download from > `http://host/people/bozo/' following only links to bozo's colleagues in > the `/people' directory and the bogus scripts in `/cgi-bin'

trailing '/' of include-directories removed bug

2003-06-11 Thread wei ye
. It's a minor bug, but I hope it could be fix in next version. Thanks! static int cmd_directory_vector(...) { ... if (len > 1) { if ((*t)[len - 1] == '/') (*t)[len - 1] = '\0'; } ... } = Wei Ye _

Re: trailing '/' of include-directories removed bug

2003-06-11 Thread wei ye
BTW, my wget version is 1.8.2. Thanks! --- wei ye <[EMAIL PROTECTED]> wrote: > > I'm trying to crawl url with --include-directories='/r/' > parameter. > > I expect to crawl '/r/*', but wget gives me '/r*'. > > By reading th