This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Difference in 32/64-bit curl.


Corinna Vinschen wrote:
> On Apr 23 23:56, Christian Franke wrote:
> > Fredrik Rothamel wrote:
> > >
> > >I just noticed that in 64-bit cygwin curl always include the
> > >http-headers in the response.
> > >(Old behaviour is to only include headers when -i option is
> > specified) >
> > >Is this an intentional change?
> > 
> > Unlikely. In this case it should be possible to revert the default
> > -i (--include) with --no-include.
> > 
> 
> What about a type issue?  int vs. long?
> 

Yes, option is possibly set as int (bool) but retrieved as long:

src/tool_cfgable.h:89:
 bool include_headers;     /* ... */

src/tool_operate.c:886:
 my_setopt(curl, CURLOPT_HEADER, config->include_headers);

lib/url.c:704:
case CURLOPT_HEADER:
...
 data->set.include_header = (0 != va_arg(param, long))?TRUE:FALSE;


Christian




--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]