]> granicus.if.org Git - curl/commitdiff
7.8.1-pre3 commit curl-7_8_1-pre3
authorDaniel Stenberg <daniel@haxx.se>
Mon, 6 Aug 2001 08:43:37 +0000 (08:43 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 6 Aug 2001 08:43:37 +0000 (08:43 +0000)
CHANGES
include/curl/curl.h
src/version.h
tests/runtests.pl

diff --git a/CHANGES b/CHANGES
index 135bdc1912bdd918cad6403cb890d1f7d14e8da8..fa03788134e1bce215ccb0b4b1784be25265d803 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,11 @@
 
                                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)
 - 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
index 8fcf65edfad80ceaeae109bf7b475f6287bdd926..39317312c07f00a1ed7fedf1fac5cc8a4b835be1 100644 (file)
@@ -509,7 +509,7 @@ void curl_global_cleanup(void);
 
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.8.1-pre2"
+#define LIBCURL_VERSION "7.8.1-pre3"
 #define LIBCURL_VERSION_NUM 0x070801
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
index 8bf2bed6263e395c75dc8ffddc69ff481a7afbac..67b908e87cca856474d332fc03096ddeb484453c 100644 (file)
@@ -1,3 +1,3 @@
 #define CURL_NAME "curl"
-#define CURL_VERSION "7.8"
+#define CURL_VERSION "7.8.1-pre3"
 #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
index 6fa44778f405e34f45c3890849796f5af091aed1..ac87beb09fa64ea23fd9bafe62433e555f67987f 100755 (executable)
@@ -514,7 +514,7 @@ sub singletest {
             if(!$short) {
                 print "curl returned $res\n";
             }
-            print " error FAILED";
+            print " error FAILED\n";
             return 1;
         }
     }
@@ -525,7 +525,7 @@ sub singletest {
 
         $res = compare(\@actual, \@validstdout);
         if($res) {
-            print " stdout FAILED";
+            print " stdout FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -540,7 +540,7 @@ sub singletest {
         my @out = loadarray($CURLOUT);
         $res = compare(\@out, \@reply);
         if ($res) {
-            print " data FAILED";
+            print " data FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -553,7 +553,7 @@ sub singletest {
         my @out = loadarray("$LOGDIR/upload.$testnum");
         $res = compare(\@out, \@upload);
         if ($res) {
-            print " upload FAILED";
+            print " upload FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -578,7 +578,7 @@ sub singletest {
 
         $res = compare(\@out, \@protstrip);
         if($res) {
-            print " protocol FAILED";
+            print " protocol FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -600,7 +600,7 @@ sub singletest {
 
         $res = compare(\@generated, \@outfile);
         if($res) {
-            print " output FAILED";
+            print " output FAILED\n";
             return 1;
         }
         if(!$short) {