~ubuntu-branches/ubuntu/maverick/newsbeuter/maverick

« back to all changes in this revision

Viewing changes to xmlrss/mrss_generic.c

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2008-09-02 13:56:35 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20080902135635-728j1jk0wvt7kswp
Tags: 1.2-1
* New upstream release.
  - Fix incomplete quoting fix for article URLs by replacing '
    with the proper encoding in hex (Closes: #497495).
* Update rss_parser.cpp part of the use_system-wide-libs for the
  new download-timeout option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
  curl_easy_setopt (curl, CURLOPT_HEADERDATA, lastmodified);
103
103
  curl_easy_setopt (curl, CURLOPT_NOBODY, 1);
104
104
  curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1);
 
105
  curl_easy_setopt (curl, CURLOPT_NOSIGNAL, 1);
105
106
 
106
107
  if (options)
107
108
    {
119
120
      if (options->cacert)
120
121
        curl_easy_setopt (curl, CURLOPT_CAINFO, options->cacert);
121
122
 
 
123
      if (options->user_agent)
 
124
        curl_easy_setopt (curl, CURLOPT_USERAGENT, options->user_agent);
 
125
 
122
126
      if (options->proxy)
123
127
        {
124
128
          curl_easy_setopt (curl, CURLOPT_PROXY, options->proxy);