~ubuntu-branches/ubuntu/edgy/curl/edgy-updates

« back to all changes in this revision

Viewing changes to tests/libtest/lib511.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-07-26 19:03:01 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20050726190301-x2m2vmjgc8fwnic5
Tags: 7.14.0-2ubuntu1
Synchronize with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
  curl_easy_setopt(curl, CURLOPT_NOBODY, 1);
10
10
  curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
11
11
  res = curl_easy_perform(curl);
12
 
  curl_easy_cleanup(curl);  
 
12
  curl_easy_cleanup(curl);
13
13
  return (int)res;
14
14
}
15