+Summary of changes from v007 to v008
+============================================
+
+Greg Kroah-Hartman (1):
+ Works properly now with twitter due to december twitter server change
+
+
Summary of changes from v006 to v007
============================================
CURLcode res;
struct curl_httppost *formpost = NULL;
struct curl_httppost *lastptr = NULL;
+ struct curl_slist *slist = NULL;
if (!session)
return -EINVAL;
switch (session->host) {
case HOST_TWITTER:
curl_easy_setopt(curl, CURLOPT_URL, twitter_url);
+ /*
+ * twitter doesn't like the "Expect: 100-continue" header
+ * anymore, so turn it off.
+ */
+ slist = curl_slist_append(slist, "Expect:");
+ curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
break;
case HOST_IDENTICA:
curl_easy_setopt(curl, CURLOPT_URL, identica_url);
+bti (008-1) UNRELEASED; urgency=low
+
+ * New upstream release (due to december twitter server change).
+
+ -- gregor herrmann <gregoa@debian.org> Sat, 10 Jan 2009 05:55:35 +0100
+
bti (007-1) unstable; urgency=low
* New upstream release.