summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-08-06 08:43:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-08-06 08:43:37 +0000
commita6a367380422fcfcd48886c403bfbdecf9c7d28d (patch)
treeba7b5adef79c80fdef8ce68cc850a558410cd865
parent944f9a73f43d1f76f6b1697e2a0655f1811e067c (diff)
downloadcurl-a6a367380422fcfcd48886c403bfbdecf9c7d28d.tar.gz
7.8.1-pre3 commitcurl-7_8_1-pre3
-rw-r--r--CHANGES5
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
-rwxr-xr-xtests/runtests.pl12
4 files changed, 13 insertions, 8 deletions
diff --git a/CHANGES b/CHANGES
index 135bdc191..fa0378813 100644
--- 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
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 8fcf65edf..39317312c 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -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) */
diff --git a/src/version.h b/src/version.h
index 8bf2bed62..67b908e87 100644
--- a/src/version.h
+++ b/src/version.h
@@ -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 ") "
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 6fa44778f..ac87beb09 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -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) {