aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-07-23 20:53:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-07-23 20:53:04 +0000
commit7d0eabaa808474fc083723a2fc6932f9d1e0de4e (patch)
tree7df2527fc8eb57ee251628e3868b0405a6cf76d8 /CHANGES
parente7f5d12cb6a5dc057e96eedc1f2e2ad87d22260f (diff)
- I went over the curl_easy_setopt man page and replaced most references to
non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 4c0c2dc2f..fe786750a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,15 @@
Changelog
+Daniel Stenberg (23 Jul 2008)
+- I went over the curl_easy_setopt man page and replaced most references to
+ non-zero with the fixed value of 1. We should strive at making options
+ support '1' for enabling them mentioned explicitly, as that then will allow
+ us for to extend them in the future without breaking older programs.
+
+ Possibly we should even introduce a fancy define to use instead of '1' all
+ over...
+
Yang Tse (21 Jul 2008)
- Use the sreadfrom() wrapper to replace recvfrom() in our code.