Commit a6a36738 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

7.8.1-pre3 commit

parent 944f9a73
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,11 @@


                               History of Changes
                               History of Changes


Daniel (6 August 2001)
- Jonathan Hseu noticed that you couldn't get a header callback unless you
  set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that
  data. This is now fixed.

Daniel (5 August 2001)
Daniel (5 August 2001)
- Sergio Ballestrero provided a patch for reading responses from NCSA httpd
- Sergio Ballestrero provided a patch for reading responses from NCSA httpd
  1.5.x servers, as they return really screwed up response headers when asked
  1.5.x servers, as they return really screwed up response headers when asked
+1 −1
Original line number Original line Diff line number Diff line
@@ -509,7 +509,7 @@ void curl_global_cleanup(void);




/* This is the version number */
/* This is the version number */
#define LIBCURL_VERSION "7.8.1-pre2"
#define LIBCURL_VERSION "7.8.1-pre3"
#define LIBCURL_VERSION_NUM 0x070801
#define LIBCURL_VERSION_NUM 0x070801


/* linked-list structure for the CURLOPT_QUOTE option (and other) */
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
+1 −1
Original line number Original line Diff line number Diff line
#define CURL_NAME "curl"
#define CURL_NAME "curl"
#define CURL_VERSION "7.8"
#define CURL_VERSION "7.8.1-pre3"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
+6 −6
Original line number Original line Diff line number Diff line
@@ -514,7 +514,7 @@ sub singletest {
            if(!$short) {
            if(!$short) {
                print "curl returned $res\n";
                print "curl returned $res\n";
            }
            }
            print " error FAILED";
            print " error FAILED\n";
            return 1;
            return 1;
        }
        }
    }
    }
@@ -525,7 +525,7 @@ sub singletest {


        $res = compare(\@actual, \@validstdout);
        $res = compare(\@actual, \@validstdout);
        if($res) {
        if($res) {
            print " stdout FAILED";
            print " stdout FAILED\n";
            return 1;
            return 1;
        }
        }
        if(!$short) {
        if(!$short) {
@@ -540,7 +540,7 @@ sub singletest {
        my @out = loadarray($CURLOUT);
        my @out = loadarray($CURLOUT);
        $res = compare(\@out, \@reply);
        $res = compare(\@out, \@reply);
        if ($res) {
        if ($res) {
            print " data FAILED";
            print " data FAILED\n";
            return 1;
            return 1;
        }
        }
        if(!$short) {
        if(!$short) {
@@ -553,7 +553,7 @@ sub singletest {
        my @out = loadarray("$LOGDIR/upload.$testnum");
        my @out = loadarray("$LOGDIR/upload.$testnum");
        $res = compare(\@out, \@upload);
        $res = compare(\@out, \@upload);
        if ($res) {
        if ($res) {
            print " upload FAILED";
            print " upload FAILED\n";
            return 1;
            return 1;
        }
        }
        if(!$short) {
        if(!$short) {
@@ -578,7 +578,7 @@ sub singletest {


        $res = compare(\@out, \@protstrip);
        $res = compare(\@out, \@protstrip);
        if($res) {
        if($res) {
            print " protocol FAILED";
            print " protocol FAILED\n";
            return 1;
            return 1;
        }
        }
        if(!$short) {
        if(!$short) {
@@ -600,7 +600,7 @@ sub singletest {


        $res = compare(\@generated, \@outfile);
        $res = compare(\@generated, \@outfile);
        if($res) {
        if($res) {
            print " output FAILED";
            print " output FAILED\n";
            return 1;
            return 1;
        }
        }
        if(!$short) {
        if(!$short) {